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 --- .../-string-form-control/index.html | 183 +++++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 api/pl.treksoft.kvision.form/-string-form-control/index.html (limited to 'api/pl.treksoft.kvision.form/-string-form-control/index.html') diff --git a/api/pl.treksoft.kvision.form/-string-form-control/index.html b/api/pl.treksoft.kvision.form/-string-form-control/index.html new file mode 100644 index 00000000..2b6d030d --- /dev/null +++ b/api/pl.treksoft.kvision.form/-string-form-control/index.html @@ -0,0 +1,183 @@ + + + +StringFormControl - kvision + + + +kvision / pl.treksoft.kvision.form / StringFormControl
+
+

StringFormControl

+interface StringFormControl : FormControl +

Base interface of a form control with a text value.

+

Properties

+ + + + + + + +
+

value

+
+abstract var value: String? +

Text value.

+
+

Inherited Properties

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

disabled

+
+open var disabled: Boolean +

Determines if the field is disabled.

+
+

flabel

+
+abstract val flabel: FieldLabel +

Form field label.

+
+

input

+
+abstract val input: FormInput +

The actual input component.

+
+

name

+
+open var name: String? +

The name attribute of the generated HTML input element.

+
+

size

+
+open var size: InputSize? +

Input control field size.

+
+

validationInfo

+
+abstract val validationInfo: HelpBlock +

Validation info component.

+
+

validatorError

+
+open var validatorError: String? +

Validator error message.

+
+

Functions

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

getValue

+
+open fun getValue(): String? +

Returns the value of the control.

+
+

getValueAsString

+
+open fun getValueAsString(): String? +

Returns the value of the control as a String.

+
+

setValue

+
+open fun setValue(v: Any?): Unit +

Sets the value of the control.

+
+

Inherited Functions

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

blur

+
+abstract fun blur(): Unit +

Makes the input element blur.

+
+

focus

+
+abstract fun focus(): Unit +

Makes the input element focused.

+
+

Inheritors

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

AbstractText

+
+abstract class AbstractText : SimplePanel, StringFormControl +

Base class for form field text components.

+
+

RadioGroup

+
+open class RadioGroup : SimplePanel, StringFormControl +

The form field component rendered as a group of HTML input type="radio" elements with the same name attribute.

+
+

Select

+
+open class Select : SimplePanel, StringFormControl +

The form field component for Select control.

+
+ + -- cgit