Date
A date panel field that can be used to select a date from a calendar.
Its value is sent as a command to the server on a submit action or when it changes, if Auto Send
it true.
Attributes
Common
ID
Sets the object's ID.
The ID identifies the object and is used to reference it in UISet actions, allowing to change its attributes dynamically.
The ID is not unique, it can be shared among multiple objects to quickly change a common attribute.
IDs can't be changed with a UISet action, but they can have a Value Binding assigned to them. Value Bindings on IDs allow an object to be dinamically attached to a set of attribute values.
E.g. the following Value Binding switches the ID of the object between mybutton1
and mybutton2
based on the value of the UISet button.address
:
Value binding:
="mybutton" + ui('button', 'address')
UISet:
UISet('button', 'address', '1')
switches the ID to mybutton1
UISet('button', 'address', '2')
switches the ID to mybutton2
Comment
Specifies a comment, visible only in the Project Editor. It can be used to add a note or a tag to the object. The filter in the object's SELECT panel applies to the comment as well.
This attribute is static
. Its value can't be changed dynamically with a uiSet command or with a value binding.
Position and Size
Position
Sets the object's position.
The default
value is: x0y0
.
Attribute Values
Value | Description | Example |
---|---|---|
x<left>y<top> | Specify left/top coordinates in pixels. | x10y20 |
Flex Grow
Specifies if the objects should grow to fill the available space.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Objects expand to fill the available space. |
false | Objects do not grow to fill the available space. |
Flex Shrink
Specifies if the objects should shrink to fit the available space.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Objects shrink to fit the available space. |
false | Objects do not shrink to fit the available space. |
Width
Sets the object's width in pixels.
Minimum value is 1.
Height
Sets the object's height in pixels.
Minimum value is 1.
Field
Name
Specifies the name of the field, used to send a command to the server, along with the field's value as a parameter.
The default
value is: =id
.
Value
Specifies the value of the field.
The format is specified by the Data Format
attribute.
"now" sets the current date. "[+|-][y|M|w|d]" sets a date relative to today, where y=year, M=month, w=week, d=day.
Attribute Values
Value | Description | Example |
---|---|---|
<string> | Date value formatted as specified in Data Format. | 2020-12-31 |
now | Current date of the browser. | |
[+|-][y|M|w|d] | Relative date, where y=year, M=month, w=week, d=day. | +1d |
Auto Send
Specifies whether the value is automatically sent on change or is sent through a button with submit action.
The default
value is: auto
.
Attribute Values
Value | Description |
---|---|
auto | Default value. The value is sent only if there's no buttons with submit action in the same or a parent container. |
true | The value is sent automatically on change. |
false | The value is not automatically sent. |
Required
Specifies if the field is required when submitting multiple fields with a submit button. If true, an empty/null value is considered not valid. When there are non valid fields, the submit button focuses the first non valid field instead of sending data to the server, to prompt the user to fill in the required fields.
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
false | Default value. The field is not required. |
true | The field is required. |
From Date
Specifies the earliest selectable date. Dates prior to this will not be
selectable.
The format is specified by the Data Format
attribute.
"now" specifies the current date. "[+|-][y|M|w|d]" specifies a date relative to today, where y=year, M=month, w=week, d=day.
Attribute Values
Value | Description | Example |
---|---|---|
<string> | Date value formatted as specified in Data Format. | 2020-12-31 |
now | Current date of the browser. | |
[+|-][y|M|w|d] | Relative date, where y=year, M=month, w=week, d=day. | -1w |
To Date
Specifies the latest selectable date. Selection of dates beyond this point is not permitted.
The format is specified by the Data Format
attribute.
"now" specifies the current date. "[+|-][y|M|w|d]" specifies a date relative to today, where y=year, M=month, w=week, d=day.
Attribute Values
Value | Description | Example |
---|---|---|
<string> | Date value formatted as specified in Data Format. | 2020-12-31 |
now | Current date of the browser. | |
[+|-][y|M|w|d] | Relative date, where y=year, M=month, w=week, d=day. | +1w |
Data Format
Specifies the data format, which determines how the value is parsed when received (through a UISet) or sent.
The default
value is: extended
.
Attribute Values
Value | Description |
---|---|
extended | Default value. YYYY-MM-DD ISO 8601 Extended Format. |
basic | YYYYMMDD ISO 8601 Basic Format. |
timestamp | Unix Timestamp: Seconds since the Unix Epoch (January 1, 1970 00:00:00 GMT). |
Value Options
Specifies additional value options, which appear as buttons.
The default
value is: [{"value":"*", "label":"- -"},{"value":"now", "label":"$today;"}]
.
This attribute is experimental
. It might not work properly and it might be modified or removed in a future release.
Attribute Values
Value | Description |
---|---|
<array> | Array of JSON options, each with value and label properties. |
Locale
Specifies the locale to be used, or a list of locales.
If a list is provided, the runtime picks the best one available.
The default
value is: =project:locale
.