Overview #
Provides an integer number input box.
Value: #
Basic usage:
{{ FieldName }}
- Result: 1 (if the value of the field is 1)
- Result: 0 (if the value of the field is 0 or NULL)
Pure Value (Unprocessed): #
Example:
{{ FieldName.value }}
- Result: 1 (if the value of the field is 1)
- Result: 0 (if the value of the field is 0)
- Result: NULL (if the value of the field is NULL)
Edit Record Parameters: #
Parameters for configuring the input element for integer numbers.
Basic usage:
{{ FieldName.edit }}
Usage with parameters:
{{ FieldName.edit(CSS Class, Attributes) }}
CSS Class
(optional) – Name or names of CSS class(es).Attributes
(optional) – Optional attributes such as: disabled, onclick, onchange, etc.
Leave a Reply
You must be logged in to post a comment.