DateInput

component fbx.ui.control.DateInput

This control permits to enter a date within a defined time range.

../../../_images/datetimeinput.png

A DateInput widget.

DateInput {
    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.