From 12d2bd198c9ff5cb197e50da2d024a2418b8ee36 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sat, 2 Jun 2018 00:47:15 +0200 Subject: Upgrade to 0.0.13 --- .../-k-date-form-control/get-value-as-string.html | 16 ++ .../-k-date-form-control/get-value.html | 18 +++ .../-k-date-form-control/index.html | 165 +++++++++++++++++++++ .../-k-date-form-control/set-value.html | 19 +++ .../-k-date-form-control/value.html | 15 ++ 5 files changed, 233 insertions(+) create mode 100644 api/pl.treksoft.kvision.form/-k-date-form-control/get-value-as-string.html create mode 100644 api/pl.treksoft.kvision.form/-k-date-form-control/get-value.html create mode 100644 api/pl.treksoft.kvision.form/-k-date-form-control/index.html create mode 100644 api/pl.treksoft.kvision.form/-k-date-form-control/set-value.html create mode 100644 api/pl.treksoft.kvision.form/-k-date-form-control/value.html (limited to 'api/pl.treksoft.kvision.form/-k-date-form-control') diff --git a/api/pl.treksoft.kvision.form/-k-date-form-control/get-value-as-string.html b/api/pl.treksoft.kvision.form/-k-date-form-control/get-value-as-string.html new file mode 100644 index 00000000..677bcda1 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-k-date-form-control/get-value-as-string.html @@ -0,0 +1,16 @@ + + + +KDateFormControl.getValueAsString - kvision + + + +kvision / pl.treksoft.kvision.form / KDateFormControl / getValueAsString
+
+

getValueAsString

+ +open fun getValueAsString(): String? +

Overrides FormControl.getValueAsString

+

Returns the value of the control as a String.

+ + diff --git a/api/pl.treksoft.kvision.form/-k-date-form-control/get-value.html b/api/pl.treksoft.kvision.form/-k-date-form-control/get-value.html new file mode 100644 index 00000000..80fe5c8b --- /dev/null +++ b/api/pl.treksoft.kvision.form/-k-date-form-control/get-value.html @@ -0,0 +1,18 @@ + + + +KDateFormControl.getValue - kvision + + + +kvision / pl.treksoft.kvision.form / KDateFormControl / getValue
+
+

getValue

+ +open fun getValue(): KDate? +

Overrides FormControl.getValue

+

Returns the value of the control.

+

Return
+the value

+ + diff --git a/api/pl.treksoft.kvision.form/-k-date-form-control/index.html b/api/pl.treksoft.kvision.form/-k-date-form-control/index.html new file mode 100644 index 00000000..a14754e7 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-k-date-form-control/index.html @@ -0,0 +1,165 @@ + + + +KDateFormControl - kvision + + + +kvision / pl.treksoft.kvision.form / KDateFormControl
+
+

KDateFormControl

+interface KDateFormControl : FormControl +

Base interface of a form control with a date value.

+

Properties

+ + + + + + + +
+

value

+
+abstract var value: KDate? +

Date 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(): KDate? +

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

+ + + + + + + +
+

DateTime

+
+open class DateTime : SimplePanel, KDateFormControl +

Form field date/time chooser component.

+
+ + diff --git a/api/pl.treksoft.kvision.form/-k-date-form-control/set-value.html b/api/pl.treksoft.kvision.form/-k-date-form-control/set-value.html new file mode 100644 index 00000000..3e102567 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-k-date-form-control/set-value.html @@ -0,0 +1,19 @@ + + + +KDateFormControl.setValue - kvision + + + +kvision / pl.treksoft.kvision.form / KDateFormControl / setValue
+
+

setValue

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

Overrides FormControl.setValue

+

Sets the value of the control.

+

Parameters

+

+v - the value

+ + diff --git a/api/pl.treksoft.kvision.form/-k-date-form-control/value.html b/api/pl.treksoft.kvision.form/-k-date-form-control/value.html new file mode 100644 index 00000000..252a1296 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-k-date-form-control/value.html @@ -0,0 +1,15 @@ + + + +KDateFormControl.value - kvision + + + +kvision / pl.treksoft.kvision.form / KDateFormControl / value
+
+

value

+ +abstract var value: KDate? +

Date value.

+ + -- cgit