-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
documented prompt Text area #80
Changes from 5 commits
1985377
9fc27ea
c01b3c7
5d9870f
fda4776
bd49dce
becb5b4
2d970b9
17deb28
5233520
f9df65d
6dea856
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -388,6 +388,19 @@ The following prompt types are available in ODK-X Survey. | |
| like to enter. | ||
* - video | ||
- | Used to capture a video. | ||
* - Text Area | ||
- | Used to enter the information in a big text area or pragraphs. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
.. note:: | ||
if users anticipates for writing anything longer than 255 characters then the user need to change the model sheet and change the elementType column. As the documentation states: "For example, as shown in the datatypes XLSX, string variables' length can be adjusted from a default of 255 to other lengths with string(len)". For example, if you had a string prompt named long_data that you wanted to be 500 characters, you would add the following to your model worksheet. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like the rest of the changes! But I think this is weird: "As the documentation states: "For example, as shown in the datatypes XLSX, string variables' length can be adjusted from a default of 255 to other lengths with string(len)". as this IS the documentation so seems weird. That was my comment to you to help you update your pull request. |
||
.. list-table:: | ||
|
||
* - | name | ||
- | type | ||
- | element type | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be |
||
* - | long_data | ||
- | string | ||
- | string(500) | ||
|
||
.. _xlsx-ref-settings: | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be the identifier for the prompt type, which is
textarea
.