Typeahead Remote Input
fun <T : Any> TypeaheadRemoteInput(serviceManager: KVServiceMgr<T>, function: suspend T.(String?, String?) -> List<String>, stateFunction: () -> String? = null, items: Int? = 8, minLength: Int = 1, delay: Int = 0, type: TextInputType = TextInputType.TEXT, value: String? = null, taAjaxOptions: TaAjaxOptions? = null, className: String? = null, init: TypeaheadRemoteInput<T>.() -> Unit? = null)
Content copied to clipboard
Parameters
serviceManager
multiplatform service manager
function
multiplatform 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