select

fun Container.select(options: List<StringPair>? = null, value: String? = null, name: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.() -> Unit? = null): Select

DSL builder extension function.

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

fun <S> Container.select(state: ObservableState<S>, options: List<StringPair>? = null, value: String? = null, name: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.(S) -> Unit): Select

DSL builder extension function for observable state.

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