styledGridView

fun <T> styledGridView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null): GridView<T>

Create a styled GridView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun <T> NodeManager.styledGridView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null): GridView<T>

Add a styled GridView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun <T> styledGridView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: GridView<T>.() -> Unit): GridView<T>

Create a styled GridView 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> NodeManager.styledGridView(items: ObservableList<T> = observableArrayList(), vararg styleClass: String, id: String? = null, configuration: GridView<T>.() -> Unit): GridView<T>

Add a styled GridView 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.