TABLE OF CONTENTS



The section field is a read-only field type that lets you display text and/or an image in the Form. The field can also be used as a separator between other fields.


Basic Properties


Data Name


This is the name of the field that should be referenced in any form logic or API calls. Users will not see this name on the form.



Data names cannot contain spaces or any special characters other than an underscore and must begin with a letter. They are case-sensitive and must be referred to precisely whenever they are referenced.


Title Text


This is the name of the field that will be displayed to users on the app. This property is completely optional; while a field must contain a data name, a field title is optional.



The text color may be chosen with a hex code. The text may be also formatted as Bold or Italic and given a relative size -- Small, Medium (the default) or Large.


Hint Text


This optional field can be used to show secondary information to the user in the app. Consider using this to provide instruction or clarification to the user as they fill out the field -- or in the case of a section field, perhaps to add supplemental information to what was already provided in the Title Text property.



Formatting options for this property are the same as those given available for the Title Text property.


Static Image


This property allows the designer to choose a static image that will be displayed to the user on the app. This is useful for displaying read-only visuals such as diagrams, risk matrices, charts. Bear in mind that the chosen image must be in PNG or JPG/JPEG format and be smaller than 500 kilobytes in size.



Please note that static images chosen for section fields will be lost when the form is exported to Excel. The images will need to be manually re-selected after the Excel file has been imported into the same or a new form. As an alternative to this, consider using the Dynamic Image property instead (see below).


Dynamic Image


This property allows the designer to define a calculation/formula that will dynamically populate an image into this section for display to the user on the app. The reference may be to a hyperlink or a data source location. For example:

  • Hyperlink, with a field reference:
    CONCAT('http://myexamplesite.com/', {{myfield}}, '.jpg')

    The above will display an image located at the address where the value collected from the user in the field {{myfield}} will be part of the URL string. Of course, a static URL here that does not include a field reference can also be used.
  • Data source reference:
    {{mydsfield[2]}}

    This will refer to the image stored in column 3 (zero-indexed) of the data source to which the field {{mydsfield}} is linked.



Go to the top.



Layout Styling


Background Color


The color chosen in the hex code field here will apply to the section field. The Transparent box can also be chosen instead for making this transparent instead of a solid color; this is a popular choice for displaying logos or other images.



Go to the top.



Validation Behavior


Visibility


The contents of this field will determine whether the field will be visible to the user. For more detail on visibility rules, please see this article.





Go to the top.