buttonGroup

fun Container.buttonGroup(size: ButtonGroupSize? = null, vertical: Boolean = false, classes: Set<String>? = null, className: String? = null, init: ButtonGroup.() -> Unit? = null): ButtonGroup

DSL builder extension function.

It takes the same parameters as the constructor of the built component.

fun <S> Container.buttonGroup(state: ObservableState<S>, size: ButtonGroupSize? = null, vertical: Boolean = false, classes: Set<String>? = null, className: String? = null, init: ButtonGroup.(S) -> Unit): ButtonGroup

DSL builder extension function for observable state.

It takes the same parameters as the constructor of the built component.

fun Toolbar.buttonGroup(classes: Set<String>? = null, className: String? = null, init: ButtonGroup.() -> Unit? = null): ButtonGroup

DSL builder extension function for toolbar.

It creates button groups with size and vertical parameters of the toolbar.

fun <S> Toolbar.buttonGroup(state: ObservableState<S>, classes: Set<String>? = null, className: String? = null, init: ButtonGroup.(S) -> Unit): ButtonGroup

DSL builder extension function for toolbar for observable state.

It creates button groups with size and vertical parameters of the toolbar.