From 806edfceeefe7fda47924f97237974e99fe28a02 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 2 Apr 2018 01:35:47 +0200 Subject: API documentantion update --- .../-form-input/disabled.html | 15 ++ .../-form-input/index.html | 195 +++++++++++++++++++++ api/pl.treksoft.kvision.form/-form-input/name.html | 15 ++ api/pl.treksoft.kvision.form/-form-input/size.html | 15 ++ 4 files changed, 240 insertions(+) create mode 100644 api/pl.treksoft.kvision.form/-form-input/disabled.html create mode 100644 api/pl.treksoft.kvision.form/-form-input/index.html create mode 100644 api/pl.treksoft.kvision.form/-form-input/name.html create mode 100644 api/pl.treksoft.kvision.form/-form-input/size.html (limited to 'api/pl.treksoft.kvision.form/-form-input') diff --git a/api/pl.treksoft.kvision.form/-form-input/disabled.html b/api/pl.treksoft.kvision.form/-form-input/disabled.html new file mode 100644 index 00000000..be64c7f7 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-form-input/disabled.html @@ -0,0 +1,15 @@ + + + +FormInput.disabled - kvision + + + +kvision / pl.treksoft.kvision.form / FormInput / disabled
+
+

disabled

+ +abstract var disabled: Boolean +

Determines if the field is disabled.

+ + diff --git a/api/pl.treksoft.kvision.form/-form-input/index.html b/api/pl.treksoft.kvision.form/-form-input/index.html new file mode 100644 index 00000000..fd61b517 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-form-input/index.html @@ -0,0 +1,195 @@ + + + +FormInput - kvision + + + +kvision / pl.treksoft.kvision.form / FormInput
+
+

FormInput

+interface FormInput : Component +

Properties

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

disabled

+
+abstract var disabled: Boolean +

Determines if the field is disabled.

+
+

name

+
+abstract var name: String? +

The name attribute of the generated HTML input element.

+
+

size

+
+abstract var size: InputSize? +

Input control field size.

+
+

Inherited Properties

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

parent

+
+abstract var parent: Container? +

Parent of the current component.

+
+

visible

+
+abstract var visible: Boolean +

Visibility state of the current component.

+
+

Inherited Functions

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

addCssClass

+
+abstract fun addCssClass(css: String): Component +

Adds given value to the set of CSS classes generated in html code of current component.

+
+

addSurroundingCssClass

+
+abstract fun addSurroundingCssClass(css: String): Component +

Adds given value to the set of CSS classes generated in html code of parent component.

+
+

getElement

+
+abstract fun getElement(): Node? +

Returns DOM element bound to the current component.

+
+

getElementJQuery

+
+abstract fun getElementJQuery(): JQuery? +

Returns JQuery element bound to the current component.

+
+

getElementJQueryD

+
+abstract fun getElementJQueryD(): dynamic +

Returns JQuery element bound to the current component as a dynamic type.

+
+

removeCssClass

+
+abstract fun removeCssClass(css: String): Component +

Removes given value from the set of CSS classes generated in html code of current component.

+
+

removeSurroundingCssClass

+
+abstract fun removeSurroundingCssClass(css: String): Component +

Removes given value from the set of CSS classes generated in html code of parent component.

+
+

Inheritors

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

AbstractTextInput

+
+abstract class AbstractTextInput : Widget, FormInput +

Base class for basic text components.

+
+

CheckInput

+
+open class CheckInput : Widget, FormInput +

The basic input component rendered as HTML input type="checkbox" or input type="radio".

+
+

DateTimeInput

+
+open class DateTimeInput : Widget, FormInput +

Basic date/time chooser component.

+
+

SelectInput

+
+open class SelectInput : SimplePanel, FormInput +

The basic component for Select control.

+
+

SpinnerInput

+
+open class SpinnerInput : Widget, FormInput +

The basic component for spinner control.

+
+

UploadInput

+
+open class UploadInput : Widget, FormInput +

The file upload component.

+
+ + diff --git a/api/pl.treksoft.kvision.form/-form-input/name.html b/api/pl.treksoft.kvision.form/-form-input/name.html new file mode 100644 index 00000000..8d920881 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-form-input/name.html @@ -0,0 +1,15 @@ + + + +FormInput.name - kvision + + + +kvision / pl.treksoft.kvision.form / FormInput / name
+
+

name

+ +abstract var name: String? +

The name attribute of the generated HTML input element.

+ + diff --git a/api/pl.treksoft.kvision.form/-form-input/size.html b/api/pl.treksoft.kvision.form/-form-input/size.html new file mode 100644 index 00000000..2952df45 --- /dev/null +++ b/api/pl.treksoft.kvision.form/-form-input/size.html @@ -0,0 +1,15 @@ + + + +FormInput.size - kvision + + + +kvision / pl.treksoft.kvision.form / FormInput / size
+
+

size

+ +abstract var size: InputSize? +

Input control field size.

+ + -- cgit