open class SelectRemoteInput<T : Any> : SelectInput
The Select control connected to the multiplatform service.
SelectRemoteInput(value: String? = null, serviceManager: KVServiceManager<T>, function: T.(String?, String?) -> List<<ERROR CLASS>>, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf()) |
var ajaxOptions: AjaxOptions?
Additional options for remote (AJAX) data source. |
|
var autofocus: Boolean?
Determines if the select is automatically focused. |
|
open var disabled: Boolean
Determines if the field is disabled. |
|
var emptyOption: Boolean
Determines if an empty option is automatically generated. |
|
var liveSearch: Boolean
Determines if live search is available. |
|
var maxOptions: Int?
Maximal number of selected options. |
|
var multiple: Boolean
Determines if multiple value selection is allowed. |
|
open var name: String?
The name attribute of the generated HTML select element. |
|
var options: List<StringPair>?
A list of options (value to label pairs) for the select control. |
|
var placeholder: String?
The placeholder for the select control. |
|
var selectWidth: CssSize?
The width of the select control. |
|
var selectWidthType: SelectWidthType?
The width type of the select control. |
|
open var size: InputSize?
The size of the input. |
|
var style: ButtonStyle?
The style of the select control. |
|
var value: String?
A value of the selected option. |
open fun add(child: Component): SimplePanel
Adds given component to the current container. |
|
open fun addAll(children: List<Component>): SimplePanel
Adds a list of components to the current container. |
|
open fun afterInsert(node: VNode): Unit
Method called after inserting Snabbdom vnode into the DOM. |
|
open fun blur(): Unit
Makes the input element blur. |
|
open fun focus(): Unit
Makes the input element focused. |
|
open fun getSnAttrs(): List<StringPair>
Returns list of element attributes in the form of a List. |
|
open fun getSnClass(): List<StringBoolPair>
Returns list of CSS class names for current widget in the form of a List. |
|
open fun hideOptions(): Unit
Hides dropdown with options. |
|
fun refreshSelectInput(): Unit |
|
open fun remove(child: Component): SimplePanel
Removes given component from the current container. |
|
open fun removeAll(): SimplePanel
Removes all children from the current container. |
|
open fun render(): VNode
Renders current component as a Snabbdom vnode. |
|
open fun showOptions(): Unit
Opens dropdown with options. |
|
open fun toggleOptions(): Unit
Toggles visibility of dropdown with options. |
fun <T : Any> Container.selectRemoteInput(value: String? = null, serviceManager: KVServiceManager<T>, function: T.(String?, String?) -> List<<ERROR CLASS>>, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf(), init: (SelectRemoteInput<T>.() -> Unit)? = null): SelectRemoteInput<T>
DSL builder extension function. |
fun <T> Any?.createInstance(vararg args: dynamic): T
Helper function for creating JavaScript objects from dynamic constructors. |