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 --- .../-date-form-control/index.html | 133 +++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 docs/api/pl.treksoft.kvision.form/-date-form-control/index.html (limited to 'docs/api/pl.treksoft.kvision.form/-date-form-control/index.html') diff --git a/docs/api/pl.treksoft.kvision.form/-date-form-control/index.html b/docs/api/pl.treksoft.kvision.form/-date-form-control/index.html new file mode 100644 index 00000000..73ebf208 --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form/-date-form-control/index.html @@ -0,0 +1,133 @@ + + + +DateFormControl - kvision + + + +kvision / pl.treksoft.kvision.form / DateFormControl
+
+

DateFormControl

+interface DateFormControl : FormControl +

Base interface of a form control with a date value.

+

Properties

+ + + + + + + +
+

value

+
+abstract var value: Date? +

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

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

+ + + + + + + +
+

DateTime

+
+open class DateTime : SimplePanel, DateFormControl +

Form field date/time chooser component.

+
+ + -- cgit