styledDatePicker

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.


fun NodeManager.styledDatePicker(date: LocalDate? = null, vararg styleClass: String, id: String? = null): DatePicker

Add a styled DatePicker to this manager.

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 NodeManager.styledDatePicker(date: LocalDate? = null, vararg styleClass: String, id: String? = null, configuration: DatePicker.() -> Unit): DatePicker

Add a styled DatePicker with configuration block to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.