Package-level declarations
Full-featured date and time input components.
Types
Link copied to clipboard
open class DateTime(value: Date? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit? = null) : SimplePanel, DateFormControl, MutableState<Date?>
Form field date/time chooser component.
Link copied to clipboard
open class DateTimeInput(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", className: String? = null, init: DateTimeInput.() -> Unit? = null) : SimplePanel, GenericFormComponent<Date?> , FormInput, MutableState<Date?>
Basic date/time chooser component.
Link copied to clipboard
Date/time chooser month header format.
Link copied to clipboard
Date/time chooser toolbar placements.
Link copied to clipboard
Date/time chooser year header format.
Functions
Link copied to clipboard
fun Container.dateTimeInput(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", className: String? = null, init: DateTimeInput.() -> Unit? = null): DateTimeInput
DSL builder extension function.