From 7c2850063697f94a0d8b8d8f8588136dd4b3d05e Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sun, 21 Oct 2018 23:59:34 +0200 Subject: API documentation for KVision 0.0.19 --- .../-bool-form-control/index.html | 174 --------------------- 1 file changed, 174 deletions(-) delete mode 100644 api/pl.treksoft.kvision.form/-bool-form-control/index.html (limited to 'api/pl.treksoft.kvision.form/-bool-form-control/index.html') diff --git a/api/pl.treksoft.kvision.form/-bool-form-control/index.html b/api/pl.treksoft.kvision.form/-bool-form-control/index.html deleted file mode 100644 index edf77b6a..00000000 --- a/api/pl.treksoft.kvision.form/-bool-form-control/index.html +++ /dev/null @@ -1,174 +0,0 @@ - - - -BoolFormControl - kvision - - - -kvision / pl.treksoft.kvision.form / BoolFormControl
-
-

BoolFormControl

-interface BoolFormControl : FormControl -

Base interface of a form control with a boolean value.

-

Properties

- - - - - - - -
-

value

-
-abstract var value: Boolean -

Boolean 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(): Boolean -

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

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

CheckBox

-
-open class CheckBox : SimplePanel, BoolFormControl -

The form field component rendered as HTML input type="checkbox".

-
-

Radio

-
-open class Radio : SimplePanel, BoolFormControl -

The form field component rendered as HTML input type="radio".

-
- - -- cgit