image(height,width,quality)

Adds a file upload field, which can be used when a person needs to add a picture.

Syntax


ABC
Upload a picture of yourself image(720,0,75)

Syntax:

image(height,width,quality)

 

Height and width:, Determines the dimensions the image. If any of the values are set to 0 it will automatically adjust the value based on the aspect ratio of the image.

 

Quality: Determines whether the image should be compressed or not. 0 is the worst quality, and 100 is the highest and the same quality as the uploaded image.

 

Validation (Column D)


Use these to ensure the data entered by the user meets predefined criteria, such as format or range, thereby ensuring the accuracy and consistency of the data (Read more):

required

Checks that the chosen value is not the first option.

 

Settings (Column G)


Used these to configure the behavior and appearance of fields, such as determining the number of decimal places in a numeric output or controlling when a field is displayed based on other input values (Read more).

showIf:logicid=value

Hides the field until the field with the logic id that you define has the value you have entered.
​

Syntax

{showIf:insurance=Yes}

In this example, we only show the input field if the field with the logic id "insurance" has the value "Yes", e.g., for use on buttons with the options "Yes" and "No".

hideIf:logicid=value

Shows the field until the field with the logic id you define has the value you have entered.
​

Syntax

{showIf:insurance=No}

In this example, we only hide the input field if the field with the logic id "insurance" has the value "No", e.g., for use on buttons with the options "Yes" and "No".