SimpleSelectRemoteInput

open class SimpleSelectRemoteInput<out T : Any>(    serviceManager: <Error class: unknown class><T>,     function: suspend T.(String?) -> List<<Error class: unknown class>>,     stateFunction: () -> String? = null,     value: String? = null,     emptyOption: Boolean = false,     multiple: Boolean = false,     selectSize: Int? = null,     className: String? = null,     init: SimpleSelectRemoteInput<T>.() -> Unit? = null)

The SimpleSelect control connected to the fullstack service.

Parameters

value

selected value

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

emptyOption

determines if an empty option is automatically generated

multiple

allows multiple value selection (multiple values are comma delimited)

selectSize

the number of visible options

className

CSS class names

init

an initializer extension function

Constructors

Link copied to clipboard
fun <out T : Any> SimpleSelectRemoteInput(    serviceManager: <Error class: unknown class><T>,     function: suspend T.(String?) -> List<<Error class: unknown class>>,     stateFunction: () -> String? = null,     value: String? = null,     emptyOption: Boolean = false,     multiple: Boolean = false,     selectSize: Int? = null,     className: String? = null,     init: SimpleSelectRemoteInput<T>.() -> Unit? = null)