Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
    <field required="true" type="text">
     <name>Name</name>
    </field>

validate Attribute

The validate attribute can be used to give a regular expression to validate the user input with any field except checkboxes. 

Code Block
    <field type="text" validate="^\d+$">
     <name>Age</name>
    </field>

 

tooltip Attribute

The tooltip attribute can be used to give a tooltip to be shown with any type of field.

Code Block
    <field type="text" tooltip="Employee's age goes here">
     <name>Age</name>
    </field>

Table Attributes

columns Attribute

...