From f3c9d405382dd81d426c7eab1f6390ec8e6dad00 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 5 Mar 2018 08:45:25 +0100 Subject: Documentation update. --- .../-text-input/index.html | 222 --------------------- 1 file changed, 222 deletions(-) delete mode 100644 docs/api/pl.treksoft.kvision.form.text/-text-input/index.html (limited to 'docs/api/pl.treksoft.kvision.form.text/-text-input/index.html') diff --git a/docs/api/pl.treksoft.kvision.form.text/-text-input/index.html b/docs/api/pl.treksoft.kvision.form.text/-text-input/index.html deleted file mode 100644 index 676988c4..00000000 --- a/docs/api/pl.treksoft.kvision.form.text/-text-input/index.html +++ /dev/null @@ -1,222 +0,0 @@ - - - -TextInput - kvision - - - -kvision / pl.treksoft.kvision.form.text / TextInput
-
-

TextInput

-open class TextInput : AbstractTextInput -

Basic text component.

-

Constructors

- - - - - - - -
-

<init>

-
-TextInput(type: TextInputType = TextInputType.TEXT, value: String? = null, classes: Set<String> = setOf())
-

Properties

- - - - - - - - - - - -
-

autocomplete

-
-var autocomplete: Boolean? -

Determines if autocomplete is enabled for the input element.

-
-

type

-
-var type: TextInputType -

Text input type.

-
-

Inherited Properties

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

autofocus

-
-var autofocus: Boolean? -

Determines if the text input is automatically focused.

-
-

disabled

-
-var disabled: Boolean -

Determines if the field is disabled.

-
-

maxlength

-
-var maxlength: Int? -

Maximal length of the text input value.

-
-

name

-
-var name: String? -

The name attribute of the generated HTML input element.

-
-

placeholder

-
-var placeholder: String? -

The placeholder for the text input.

-
-

readonly

-
-var readonly: Boolean? -

Determines if the text input is read-only.

-
-

size

-
-var size: InputSize? -

The size of the input.

-
-

startValue

-
-var startValue: String? -

The value attribute of the generated HTML input element.

-
-

value

-
-var value: String? -

Text input value.

-
-

Functions

- - - - - - - - - - - -
-

getSnAttrs

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

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

-
-

render

-
-open fun render(): VNode -

Renders current component as a Snabbdom vnode.

-
-

Inherited Functions

- - - - - - - - - - - - - - - - - - - - - - - -
-

afterInsert

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

Method called after inserting Snabbdom vnode into the DOM.

-
-

afterPostpatch

-
-open fun afterPostpatch(node: VNode): Unit -

Method called after updating Snabbdom vnode.

-
-

blur

-
-open fun blur(): Unit -

Makes the input element blur.

-
-

focus

-
-open fun focus(): Unit -

Makes the input element focused.

-
-

getSnClass

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

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

-
-

Companion Object Functions

- - - - - - - -
-

textInput

-
-fun Container.textInput(type: TextInputType = TextInputType.TEXT, value: String? = null, classes: Set<String> = setOf(), init: TextInput.() -> Unit = null): TextInput -

DSL builder extension function.

-
- - -- cgit