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