Skip to content
Last update: July 8, 2025

Calendar Control Descriptor

This control allows users to select dates, times, or both, using a configurable date/time picker based on datetime-picker.

Property Type Description
mode date
datetime
time
month
year
Defines the mode of the calendar: full datetime, date only, time only, etc.
minDate date The minimum selectable date.
maxDate date The maximum selectable date.
inline boolean Displays the calendar inline instead of as a popup.

Example

...
    "settings": [
        {
            "id": "date",
            "label": "Date",
            "type": "calendar",
            "placeholder": "Please choose a date",
            "hint": "You can select date in calendar",
            "info": "This control returns a JavaScript Date object"
        },
        ...
    ]
...

Some of the available calendar modes are as follows:

Calendar modes