styledDatePicker
inline fun styledDatePicker(date: LocalDate? = null, vararg styleClass: String, id: String? = null): DatePicker
Create a styled DatePicker.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledDatePicker(date: LocalDate? = null, vararg styleClass: String, id: String? = null): DatePicker
Add a styled DatePicker to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledDatePicker(date: LocalDate? = null, vararg styleClass: String, id: String? = null, configuration: DatePicker.() -> Unit): DatePicker
Create a styled DatePicker with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun NodeContainer.styledDatePicker(date: LocalDate? = null, vararg styleClass: String, id: String? = null, configuration: DatePicker.() -> Unit): DatePicker
Add a styled DatePicker with configuration block to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.