TypeaheadRemoteInput

open class TypeaheadRemoteInput<T : Any>(    serviceManager: <Error class: unknown class><T>,     function: suspend T.(String?, String?) -> List<String>,     stateFunction: () -> String? = null,     items: Int? = 8,     minLength: Int = 1,     delay: Int = 0,     type: <Error class: unknown class> = InputType.TEXT,     value: String? = null,     taAjaxOptions: <Error class: unknown class>? = null,     className: String? = null,     init: TypeaheadRemoteInput<T>.() -> Unit? = null)

The Typeahead control connected to the fullstack service.

Parameters

serviceManager

fullstack service manager

function

fullstack service method returning the list of options

stateFunction

a function to generate the state object passed with the remote request

items

the max number of items to display in the dropdown

minLength

the minimum character length needed before triggering dropdown

delay

a delay between lookups

type

text input type (default "text")

value

text input value

taAjaxOptions

AJAX options for remote data source

className

CSS class names

init

an initializer extension function

Constructors

Link copied to clipboard
fun <T : Any> TypeaheadRemoteInput(    serviceManager: <Error class: unknown class><T>,     function: suspend T.(String?, String?) -> List<String>,     stateFunction: () -> String? = null,     items: Int? = 8,     minLength: Int = 1,     delay: Int = 0,     type: <Error class: unknown class> = InputType.TEXT,     value: String? = null,     taAjaxOptions: <Error class: unknown class>? = null,     className: String? = null,     init: TypeaheadRemoteInput<T>.() -> Unit? = null)