DateTimeInput¶
- component fbx.ui.control.DateTimeInput¶
This control permits to enter a date and time within a defined time range.
A DateTimeInput widget.¶
DateTimeInput { minimumValue: new Date().getTime() / 1000 maximumValue: minimumValue + 3600 * 24 * 7 }
- signal done()¶
Raised when user has finished entering a date
- property value¶
An unix timestamp correponding to the entered date.
- property minimumValue¶
An unix timestamp correponding to the lowest enterable date.
- property maximumValue¶
An unix timestamp correponding to the greatest enterable date.
- property enabled¶
Whether the widget accepts user interaction.