styledCheckListView
inline fun <T> styledCheckListView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null): CheckListView<T>
Create a styled CheckListView.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T> NodeContainer.styledCheckListView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null): CheckListView<T>
Add a styled CheckListView to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T> styledCheckListView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: CheckListView<T>.() -> Unit): CheckListView<T>
Create a styled CheckListView with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun <T> NodeContainer.styledCheckListView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: CheckListView<T>.() -> Unit): CheckListView<T>
Add a styled CheckListView 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.