Multiline text field

The multiline text field is simple webcomponent which can be used to display/edit multiline notes.

Multiline text field example

Use text-multiline element type to place multiline text field on your form.

The text-multiline has the following properties:

  • “id” - the id of the element
  • “label” - the label of the field
  • “note” - this attribute contains text entered into multiline text webcomponent.
  • “cols” - the initial number of columns for text. NOTE > This attribute is override by mobile aps css.
  • “rows” - The initial number of rows to display.

NOTE: Use set operation to in iForms to get text from multiline text and put it into other variable.

NOTE: Multiline text containe white chars. You need to analyse incoming json and correctly text into database.

Example of table-totals field which will display number of selected rows. Note, the table id is “items”

{ "id": "multilineText1", "type": "text-multiline", "rows":3, "label": "Example of multiline text field" }