type | (string) the type of a control, set it to "select" |
name | (string) the name of a control |
id | (string|number) the id of a control, auto-generated if not set |
options | (array) an array of Select options, each option is an object with a set of key:value pairs - attributes of options and their values:- value - (string|number) mandatory, sets the value for the select option
- content - (string) mandatory, the content displayed in the select option
- disabled - (boolean) optional, defines whether the option is enabled (false) or disabled (true)
|
value | (string/number) the initial value of the select control |
validation | (function) the validation function, takes as a parameter the value to validate and returns true/false to indicate the result of validation |
icon | (string) the name of an icon from the used icon font |
width | (string|number|"content") the width of a control |
height | (string|number|"content") the height of a control |
padding | (string|number) sets padding between a cell and a border of the Select control |
css | (string) adds style classes to a control |
required | (boolean) defines whether a control is required |
disabled | (boolean) defines whether a control is enabled (false) or disabled (true) |
hidden | (boolean) defines whether a control is hidden |
label | (string) specifies a label for a control |
labelWidth | (string|number) sets the width of the label of a control |
hiddenLabel | (boolean) invisible label that will be used to identify the input on the server side |
labelPosition | (string) defines the position of a label: "left"|"top" |
helpMessage | (string) adds a help message to a control |
preMessage | (string) a message that contains instructions for interacting with the control |
successMessage | (string) a message that appears in case of successful validation of the control value |
errorMessage | (string) a message that appears in case of error during validation of the control value |