buttonBar
inline fun <S> KWidget<S>.buttonBar(order: String? = null, tableInit: VisTable.(S) -> Unit = {}, init: ButtonBar.() -> Unit = {}): ButtonBar
Return
a HorizontalCollapsibleWidget instance with a VisTable added to this group.
Parameters
order
buttons order. See ButtonBar static variables.
tableInit
will be invoked after init on the table storing button bar widgets. Consumes actor container (usually a Cell or Node) that contains the widget. Might consume the actor itself if this group does not keep actors in dedicated containers. Inlined.
init
will be invoked with the ButtonBar as "this". Inlined.