From eb930482e9972a21d39f2aea8b813acf58ff5b64 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 22 Oct 2018 00:01:39 +0200 Subject: API documentation for KVision 0.0.19 --- .../-select-input/-init-.html | 27 ++ .../-select-input/add-all.html | 21 ++ .../-select-input/add.html | 21 ++ .../-select-input/after-insert.html | 16 + .../-select-input/ajax-options.html | 21 ++ .../-select-input/autofocus.html | 21 ++ .../-select-input/blur.html | 15 + .../-select-input/disabled.html | 22 ++ .../-select-input/empty-option.html | 21 ++ .../-select-input/focus.html | 15 + .../-select-input/get-sn-attrs.html | 18 ++ .../-select-input/get-sn-class.html | 18 ++ .../-select-input/hide-options.html | 15 + .../-select-input/index.html | 327 +++++++++++++++++++++ .../-select-input/live-search.html | 21 ++ .../-select-input/max-options.html | 21 ++ .../-select-input/multiple.html | 21 ++ .../-select-input/name.html | 22 ++ .../-select-input/placeholder.html | 21 ++ .../-select-input/remove-all.html | 18 ++ .../-select-input/remove.html | 21 ++ .../-select-input/render.html | 18 ++ .../-select-input/select-input.html | 16 + .../-select-input/select-width-type.html | 21 ++ .../-select-input/select-width.html | 21 ++ .../-select-input/show-options.html | 15 + .../-select-input/size.html | 22 ++ .../-select-input/style.html | 21 ++ .../-select-input/toggle-options.html | 15 + .../-select-input/value.html | 21 ++ 30 files changed, 893 insertions(+) create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/-init-.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/add-all.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/add.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/after-insert.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/ajax-options.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/autofocus.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/blur.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/disabled.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/empty-option.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/focus.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/get-sn-attrs.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/get-sn-class.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/hide-options.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/index.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/live-search.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/max-options.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/multiple.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/name.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/placeholder.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/remove-all.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/remove.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/render.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/select-input.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/select-width-type.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/select-width.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/show-options.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/size.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/style.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/toggle-options.html create mode 100644 api/pl.treksoft.kvision.form.select/-select-input/value.html (limited to 'api/pl.treksoft.kvision.form.select/-select-input') diff --git a/api/pl.treksoft.kvision.form.select/-select-input/-init-.html b/api/pl.treksoft.kvision.form.select/-select-input/-init-.html new file mode 100644 index 00000000..1ea1cc60 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/-init-.html @@ -0,0 +1,27 @@ + + + +SelectInput.<init> - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / <init>
+
+

<init>

+ +SelectInput(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf()) +

Parameters

+

+options - an optional list of options (label to value pairs) for the select control

+

+value - selected value

+

+multiple - allows multiple value selection (multiple values are comma delimited)

+

+ajaxOptions - additional options for remote (AJAX) data source

+

+classes - a set of CSS class names

+

Constructor
+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/add-all.html b/api/pl.treksoft.kvision.form.select/-select-input/add-all.html new file mode 100644 index 00000000..5becd914 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/add-all.html @@ -0,0 +1,21 @@ + + + +SelectInput.addAll - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / addAll
+
+

addAll

+ +open fun addAll(children: List<Component>): SimplePanel +

Overrides SimplePanel.addAll

+

Adds a list of components to the current container.

+

Parameters

+

+children - list of child components

+

Return
+current container

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/add.html b/api/pl.treksoft.kvision.form.select/-select-input/add.html new file mode 100644 index 00000000..39171a2a --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/add.html @@ -0,0 +1,21 @@ + + + +SelectInput.add - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / add
+
+

add

+ +open fun add(child: Component): SimplePanel +

Overrides SimplePanel.add

+

Adds given component to the current container.

+

Parameters

+

+child - child component

+

Return
+current container

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/after-insert.html b/api/pl.treksoft.kvision.form.select/-select-input/after-insert.html new file mode 100644 index 00000000..aab8ccb0 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/after-insert.html @@ -0,0 +1,16 @@ + + + +SelectInput.afterInsert - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / afterInsert
+
+

afterInsert

+ +protected open fun afterInsert(node: VNode): Unit +

Overrides Widget.afterInsert

+

Method called after inserting Snabbdom vnode into the DOM.

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/ajax-options.html b/api/pl.treksoft.kvision.form.select/-select-input/ajax-options.html new file mode 100644 index 00000000..b08163f4 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/ajax-options.html @@ -0,0 +1,21 @@ + + + +SelectInput.ajaxOptions - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / ajaxOptions
+
+

ajaxOptions

+ +var ajaxOptions: AjaxOptions? +

Additional options for remote (AJAX) data source.

+

Getter
+

Additional options for remote (AJAX) data source.

+

+

Setter
+

Additional options for remote (AJAX) data source.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/autofocus.html b/api/pl.treksoft.kvision.form.select/-select-input/autofocus.html new file mode 100644 index 00000000..cf5cb1ba --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/autofocus.html @@ -0,0 +1,21 @@ + + + +SelectInput.autofocus - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / autofocus
+
+

autofocus

+ +var autofocus: Boolean? +

Determines if the select is automatically focused.

+

Getter
+

Determines if the select is automatically focused.

+

+

Setter
+

Determines if the select is automatically focused.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/blur.html b/api/pl.treksoft.kvision.form.select/-select-input/blur.html new file mode 100644 index 00000000..1854eaec --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/blur.html @@ -0,0 +1,15 @@ + + + +SelectInput.blur - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / blur
+
+

blur

+ +open fun blur(): Unit +

Makes the input element blur.

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/disabled.html b/api/pl.treksoft.kvision.form.select/-select-input/disabled.html new file mode 100644 index 00000000..21a1d754 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/disabled.html @@ -0,0 +1,22 @@ + + + +SelectInput.disabled - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / disabled
+
+

disabled

+ +open var disabled: Boolean +

Overrides FormInput.disabled

+

Determines if the field is disabled.

+

Getter
+

Determines if the field is disabled.

+

+

Setter
+

Determines if the field is disabled.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/empty-option.html b/api/pl.treksoft.kvision.form.select/-select-input/empty-option.html new file mode 100644 index 00000000..01cb6058 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/empty-option.html @@ -0,0 +1,21 @@ + + + +SelectInput.emptyOption - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / emptyOption
+
+

emptyOption

+ +var emptyOption: Boolean +

Determines if an empty option is automatically generated.

+

Getter
+

Determines if an empty option is automatically generated.

+

+

Setter
+

Determines if an empty option is automatically generated.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/focus.html b/api/pl.treksoft.kvision.form.select/-select-input/focus.html new file mode 100644 index 00000000..fe406ef8 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/focus.html @@ -0,0 +1,15 @@ + + + +SelectInput.focus - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / focus
+
+

focus

+ +open fun focus(): Unit +

Makes the input element focused.

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/get-sn-attrs.html b/api/pl.treksoft.kvision.form.select/-select-input/get-sn-attrs.html new file mode 100644 index 00000000..371b3bd7 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/get-sn-attrs.html @@ -0,0 +1,18 @@ + + + +SelectInput.getSnAttrs - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / getSnAttrs
+
+

getSnAttrs

+ +protected open fun getSnAttrs(): List<StringPair> +

Overrides Widget.getSnAttrs

+

Returns list of element attributes in the form of a List.

+

Return
+list of element attributes

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/get-sn-class.html b/api/pl.treksoft.kvision.form.select/-select-input/get-sn-class.html new file mode 100644 index 00000000..28b40573 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/get-sn-class.html @@ -0,0 +1,18 @@ + + + +SelectInput.getSnClass - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / getSnClass
+
+

getSnClass

+ +protected open fun getSnClass(): List<StringBoolPair> +

Overrides Widget.getSnClass

+

Returns list of CSS class names for current widget in the form of a List.

+

Return
+list of CSS class names

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/hide-options.html b/api/pl.treksoft.kvision.form.select/-select-input/hide-options.html new file mode 100644 index 00000000..d1b371ec --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/hide-options.html @@ -0,0 +1,15 @@ + + + +SelectInput.hideOptions - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / hideOptions
+
+

hideOptions

+ +open fun hideOptions(): Unit +

Hides dropdown with options.

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/index.html b/api/pl.treksoft.kvision.form.select/-select-input/index.html new file mode 100644 index 00000000..ed47854a --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/index.html @@ -0,0 +1,327 @@ + + + +SelectInput - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput
+
+

SelectInput

+open class SelectInput : SimplePanel, FormInput +

The basic component for Select control.

+

The select control can be populated directly from options parameter or manually by adding +SelectOption or SelectOptGroup components to the container.

+

Constructors

+ + + + + + + +
+

<init>

+
+SelectInput(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf())
+

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

ajaxOptions

+
+var ajaxOptions: AjaxOptions? +

Additional options for remote (AJAX) data source.

+
+

autofocus

+
+var autofocus: Boolean? +

Determines if the select is automatically focused.

+
+

disabled

+
+open var disabled: Boolean +

Determines if the field is disabled.

+
+

emptyOption

+
+var emptyOption: Boolean +

Determines if an empty option is automatically generated.

+
+

liveSearch

+
+var liveSearch: Boolean +

Determines if live search is available.

+
+

maxOptions

+
+var maxOptions: Int? +

Maximal number of selected options.

+
+

multiple

+
+var multiple: Boolean +

Determines if multiple value selection is allowed.

+
+

name

+
+open var name: String? +

The name attribute of the generated HTML select element.

+
+

placeholder

+
+var placeholder: String? +

The placeholder for the select control.

+
+

selectWidth

+
+var selectWidth: CssSize? +

The width of the select control.

+
+

selectWidthType

+
+var selectWidthType: SelectWidthType? +

The width type of the select control.

+
+

size

+
+open var size: InputSize? +

The size of the input.

+
+

style

+
+var style: ButtonStyle? +

The style of the select control.

+
+

value

+
+var value: String? +

A value of the selected option.

+
+

Functions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

add

+
+open fun add(child: Component): SimplePanel +

Adds given component to the current container.

+
+

addAll

+
+open fun addAll(children: List<Component>): SimplePanel +

Adds a list of components to the current container.

+
+

afterInsert

+
+open fun afterInsert(node: VNode): Unit +

Method called after inserting Snabbdom vnode into the DOM.

+
+

blur

+
+open fun blur(): Unit +

Makes the input element blur.

+
+

focus

+
+open fun focus(): Unit +

Makes the input element focused.

+
+

getSnAttrs

+
+open fun getSnAttrs(): List<StringPair> +

Returns list of element attributes in the form of a List.

+
+

getSnClass

+
+open fun getSnClass(): List<StringBoolPair> +

Returns list of CSS class names for current widget in the form of a List.

+
+

hideOptions

+
+open fun hideOptions(): Unit +

Hides dropdown with options.

+
+

remove

+
+open fun remove(child: Component): SimplePanel +

Removes given component from the current container.

+
+

removeAll

+
+open fun removeAll(): SimplePanel +

Removes all children from the current container.

+
+

render

+
+open fun render(): VNode +

Renders current component as a Snabbdom vnode.

+
+

showOptions

+
+open fun showOptions(): Unit +

Opens dropdown with options.

+
+

toggleOptions

+
+open fun toggleOptions(): Unit +

Toggles visibility of dropdown with options.

+
+

Inherited Functions

+ + + + + + + + + + + + + + + +
+

addInternal

+
+fun addInternal(child: Component): SimplePanel +

Protected and final method to add given component to the current container.

+
+

childrenVNodes

+
+open fun childrenVNodes(): Array<VNode> +

Returns the array of the children Snabbdom vnodes.

+
+

getChildren

+
+open fun getChildren(): List<Component> +

Returns a list of children of the current container.

+
+

Companion Object Functions

+ + + + + + + +
+

selectInput

+
+fun Container.selectInput(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf(), init: SelectInput.() -> Unit = null): SelectInput +

DSL builder extension function.

+
+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/live-search.html b/api/pl.treksoft.kvision.form.select/-select-input/live-search.html new file mode 100644 index 00000000..8b506a54 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/live-search.html @@ -0,0 +1,21 @@ + + + +SelectInput.liveSearch - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / liveSearch
+
+

liveSearch

+ +var liveSearch: Boolean +

Determines if live search is available.

+

Getter
+

Determines if live search is available.

+

+

Setter
+

Determines if live search is available.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/max-options.html b/api/pl.treksoft.kvision.form.select/-select-input/max-options.html new file mode 100644 index 00000000..76349c48 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/max-options.html @@ -0,0 +1,21 @@ + + + +SelectInput.maxOptions - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / maxOptions
+
+

maxOptions

+ +var maxOptions: Int? +

Maximal number of selected options.

+

Getter
+

Maximal number of selected options.

+

+

Setter
+

Maximal number of selected options.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/multiple.html b/api/pl.treksoft.kvision.form.select/-select-input/multiple.html new file mode 100644 index 00000000..f7f2b1ba --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/multiple.html @@ -0,0 +1,21 @@ + + + +SelectInput.multiple - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / multiple
+
+

multiple

+ +var multiple: Boolean +

Determines if multiple value selection is allowed.

+

Getter
+

Determines if multiple value selection is allowed.

+

+

Setter
+

Determines if multiple value selection is allowed.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/name.html b/api/pl.treksoft.kvision.form.select/-select-input/name.html new file mode 100644 index 00000000..6a9a2e7b --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/name.html @@ -0,0 +1,22 @@ + + + +SelectInput.name - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / name
+
+

name

+ +open var name: String? +

Overrides FormInput.name

+

The name attribute of the generated HTML select element.

+

Getter
+

The name attribute of the generated HTML select element.

+

+

Setter
+

The name attribute of the generated HTML select element.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/placeholder.html b/api/pl.treksoft.kvision.form.select/-select-input/placeholder.html new file mode 100644 index 00000000..7ec7138b --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/placeholder.html @@ -0,0 +1,21 @@ + + + +SelectInput.placeholder - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / placeholder
+
+

placeholder

+ +var placeholder: String? +

The placeholder for the select control.

+

Getter
+

The placeholder for the select control.

+

+

Setter
+

The placeholder for the select control.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/remove-all.html b/api/pl.treksoft.kvision.form.select/-select-input/remove-all.html new file mode 100644 index 00000000..ea8cda8e --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/remove-all.html @@ -0,0 +1,18 @@ + + + +SelectInput.removeAll - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / removeAll
+
+

removeAll

+ +open fun removeAll(): SimplePanel +

Overrides SimplePanel.removeAll

+

Removes all children from the current container.

+

Return
+current container

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/remove.html b/api/pl.treksoft.kvision.form.select/-select-input/remove.html new file mode 100644 index 00000000..0d1cd965 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/remove.html @@ -0,0 +1,21 @@ + + + +SelectInput.remove - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / remove
+
+

remove

+ +open fun remove(child: Component): SimplePanel +

Overrides SimplePanel.remove

+

Removes given component from the current container.

+

Parameters

+

+child - child component

+

Return
+current container

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/render.html b/api/pl.treksoft.kvision.form.select/-select-input/render.html new file mode 100644 index 00000000..105094e3 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/render.html @@ -0,0 +1,18 @@ + + + +SelectInput.render - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / render
+
+

render

+ +protected open fun render(): VNode +

Overrides SimplePanel.render

+

Renders current component as a Snabbdom vnode.

+

Return
+Snabbdom vnode

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/select-input.html b/api/pl.treksoft.kvision.form.select/-select-input/select-input.html new file mode 100644 index 00000000..208772db --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/select-input.html @@ -0,0 +1,16 @@ + + + +SelectInput.selectInput - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / selectInput
+
+

selectInput

+ +fun Container.selectInput(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf(), init: SelectInput.() -> Unit = null): SelectInput +

DSL builder extension function.

+

It takes the same parameters as the constructor of the built component.

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/select-width-type.html b/api/pl.treksoft.kvision.form.select/-select-input/select-width-type.html new file mode 100644 index 00000000..e0cb223d --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/select-width-type.html @@ -0,0 +1,21 @@ + + + +SelectInput.selectWidthType - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / selectWidthType
+
+

selectWidthType

+ +var selectWidthType: SelectWidthType? +

The width type of the select control.

+

Getter
+

The width type of the select control.

+

+

Setter
+

The width type of the select control.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/select-width.html b/api/pl.treksoft.kvision.form.select/-select-input/select-width.html new file mode 100644 index 00000000..65dd9467 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/select-width.html @@ -0,0 +1,21 @@ + + + +SelectInput.selectWidth - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / selectWidth
+
+

selectWidth

+ +var selectWidth: CssSize? +

The width of the select control.

+

Getter
+

The width of the select control.

+

+

Setter
+

The width of the select control.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/show-options.html b/api/pl.treksoft.kvision.form.select/-select-input/show-options.html new file mode 100644 index 00000000..d3f371c8 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/show-options.html @@ -0,0 +1,15 @@ + + + +SelectInput.showOptions - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / showOptions
+
+

showOptions

+ +open fun showOptions(): Unit +

Opens dropdown with options.

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/size.html b/api/pl.treksoft.kvision.form.select/-select-input/size.html new file mode 100644 index 00000000..2037173f --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/size.html @@ -0,0 +1,22 @@ + + + +SelectInput.size - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / size
+
+

size

+ +open var size: InputSize? +

Overrides FormInput.size

+

The size of the input.

+

Getter
+

The size of the input.

+

+

Setter
+

The size of the input.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/style.html b/api/pl.treksoft.kvision.form.select/-select-input/style.html new file mode 100644 index 00000000..aae942c5 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/style.html @@ -0,0 +1,21 @@ + + + +SelectInput.style - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / style
+
+

style

+ +var style: ButtonStyle? +

The style of the select control.

+

Getter
+

The style of the select control.

+

+

Setter
+

The style of the select control.

+

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/toggle-options.html b/api/pl.treksoft.kvision.form.select/-select-input/toggle-options.html new file mode 100644 index 00000000..725c5cc7 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/toggle-options.html @@ -0,0 +1,15 @@ + + + +SelectInput.toggleOptions - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / toggleOptions
+
+

toggleOptions

+ +open fun toggleOptions(): Unit +

Toggles visibility of dropdown with options.

+ + diff --git a/api/pl.treksoft.kvision.form.select/-select-input/value.html b/api/pl.treksoft.kvision.form.select/-select-input/value.html new file mode 100644 index 00000000..19e13af6 --- /dev/null +++ b/api/pl.treksoft.kvision.form.select/-select-input/value.html @@ -0,0 +1,21 @@ + + + +SelectInput.value - kvision + + + +kvision / pl.treksoft.kvision.form.select / SelectInput / value
+
+

value

+ +var value: String? +

A value of the selected option.

+

Getter
+

A value of the selected option.

+

+

Setter
+

A value of the selected option.

+

+ + -- cgit