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