Skip to content
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

Merged
merged 12 commits into from
Apr 14, 2021
13 changes: 13 additions & 0 deletions odkx-src/xlsx-converter-reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

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.

- | Used to enter the information in a big text area or pragraphs.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pragraphs
paragraphs


.. note::
if users anticipates for writing anything longer than 255 characters then the user needs to change the model sheet and change the elementType column. It is 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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be helpful to link to the model section.

.. list-table::

* - | name
- | type
- | element type
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be elementType

* - | long_data
- | string
- | string(500)

.. _xlsx-ref-settings:

Expand Down