typeahead Input
fun Container.typeaheadInput(options: List<String>? = null, taAjaxOptions: TaAjaxOptions? = null, source: (String, (Array<String>) -> Unit) -> Unit? = null, items: Int? = 8, minLength: Int = 1, delay: Int = 0, type: TextInputType = TextInputType.TEXT, value: String? = null, classes: Set<String>? = null, className: String? = null, init: TypeaheadInput.() -> Unit? = null): TypeaheadInput
Content copied to clipboard
DSL builder extension function.
It takes the same parameters as the constructor of the built component.
fun <S> Container.typeaheadInput(state: ObservableState<S>, options: List<String>? = null, taAjaxOptions: TaAjaxOptions? = null, source: (String, (Array<String>) -> Unit) -> Unit? = null, items: Int? = 8, minLength: Int = 1, delay: Int = 0, type: TextInputType = TextInputType.TEXT, value: String? = null, classes: Set<String>? = null, className: String? = null, init: TypeaheadInput.(S) -> Unit): TypeaheadInput
Content copied to clipboard
DSL builder extension function for observable state.
It takes the same parameters as the constructor of the built component.