From d8cd67062b8de6e8398dc6dfd00d201200c82414 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Fri, 9 Feb 2018 13:40:35 +0100 Subject: API doc and readme --- .../-number-form-control/get-value-as-string.html | 16 +++ .../-number-form-control/get-value.html | 18 +++ .../-number-form-control/index.html | 133 +++++++++++++++++++++ .../-number-form-control/set-value.html | 19 +++ .../-number-form-control/value.html | 15 +++ 5 files changed, 201 insertions(+) create mode 100644 docs/api/pl.treksoft.kvision.form/-number-form-control/get-value-as-string.html create mode 100644 docs/api/pl.treksoft.kvision.form/-number-form-control/get-value.html create mode 100644 docs/api/pl.treksoft.kvision.form/-number-form-control/index.html create mode 100644 docs/api/pl.treksoft.kvision.form/-number-form-control/set-value.html create mode 100644 docs/api/pl.treksoft.kvision.form/-number-form-control/value.html (limited to 'docs/api/pl.treksoft.kvision.form/-number-form-control') diff --git a/docs/api/pl.treksoft.kvision.form/-number-form-control/get-value-as-string.html b/docs/api/pl.treksoft.kvision.form/-number-form-control/get-value-as-string.html new file mode 100644 index 00000000..e6dd3e5f --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form/-number-form-control/get-value-as-string.html @@ -0,0 +1,16 @@ + + + +NumberFormControl.getValueAsString - kvision + + + +kvision / pl.treksoft.kvision.form / NumberFormControl / getValueAsString
+
+

getValueAsString

+ +open fun getValueAsString(): String? +

Overrides FormControl.getValueAsString

+

Returns the value of the control as a String.

+ + diff --git a/docs/api/pl.treksoft.kvision.form/-number-form-control/get-value.html b/docs/api/pl.treksoft.kvision.form/-number-form-control/get-value.html new file mode 100644 index 00000000..183e7c75 --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form/-number-form-control/get-value.html @@ -0,0 +1,18 @@ + + + +NumberFormControl.getValue - kvision + + + +kvision / pl.treksoft.kvision.form / NumberFormControl / getValue
+
+

getValue

+ +open fun getValue(): Number? +

Overrides FormControl.getValue

+

Returns the value of the control.

+

Return
+the value

+ + diff --git a/docs/api/pl.treksoft.kvision.form/-number-form-control/index.html b/docs/api/pl.treksoft.kvision.form/-number-form-control/index.html new file mode 100644 index 00000000..6e8c53ae --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form/-number-form-control/index.html @@ -0,0 +1,133 @@ + + + +NumberFormControl - kvision + + + +kvision / pl.treksoft.kvision.form / NumberFormControl
+
+

NumberFormControl

+interface NumberFormControl : FormControl +

Base interface of a form control with a numeric value.

+

Properties

+ + + + + + + +
+

value

+
+abstract var value: Number? +

Numeric value.

+
+

Inherited Properties

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

disabled

+
+abstract var disabled: Boolean +

Determines if the field is disabled.

+
+

flabel

+
+abstract val flabel: FieldLabel +

Form field label.

+
+

input

+
+abstract val input: Component +

The actual input component.

+
+

size

+
+abstract var size: INPUTSIZE? +

Input control size.

+
+

validationInfo

+
+abstract val validationInfo: HelpBlock +

Validation info component.

+
+

validatorError

+
+open var validatorError: String? +

Validator error message.

+
+

Functions

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

getValue

+
+open fun getValue(): Number? +

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.

+
+

Inheritors

+ + + + + + + +
+

Spinner

+
+open class Spinner : SimplePanel, NumberFormControl +

The form field component for spinner control.

+
+ + diff --git a/docs/api/pl.treksoft.kvision.form/-number-form-control/set-value.html b/docs/api/pl.treksoft.kvision.form/-number-form-control/set-value.html new file mode 100644 index 00000000..e1be9a52 --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form/-number-form-control/set-value.html @@ -0,0 +1,19 @@ + + + +NumberFormControl.setValue - kvision + + + +kvision / pl.treksoft.kvision.form / NumberFormControl / setValue
+
+

setValue

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

Overrides FormControl.setValue

+

Sets the value of the control.

+

Parameters

+

+v - the value

+ + diff --git a/docs/api/pl.treksoft.kvision.form/-number-form-control/value.html b/docs/api/pl.treksoft.kvision.form/-number-form-control/value.html new file mode 100644 index 00000000..2ce85ede --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form/-number-form-control/value.html @@ -0,0 +1,15 @@ + + + +NumberFormControl.value - kvision + + + +kvision / pl.treksoft.kvision.form / NumberFormControl / value
+
+

value

+ +abstract var value: Number? +

Numeric value.

+ + -- cgit