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 --- .../-select/-init-.html | 8 +++--- .../-select/disabled.html | 16 ----------- .../-select/index.html | 31 ++-------------------- .../-select/name.html | 15 ----------- .../-select/select.html | 4 +-- .../-select/size.html | 16 ----------- 6 files changed, 9 insertions(+), 81 deletions(-) delete mode 100644 api/pl.treksoft.kvision.form.select/-select/disabled.html delete mode 100644 api/pl.treksoft.kvision.form.select/-select/name.html delete mode 100644 api/pl.treksoft.kvision.form.select/-select/size.html (limited to 'api/pl.treksoft.kvision.form.select/-select') diff --git a/api/pl.treksoft.kvision.form.select/-select/-init-.html b/api/pl.treksoft.kvision.form.select/-select/-init-.html index 52fd3990..e951bc58 100644 --- a/api/pl.treksoft.kvision.form.select/-select/-init-.html +++ b/api/pl.treksoft.kvision.form.select/-select/-init-.html @@ -8,13 +8,15 @@ kvision / pl.treksoft.kvision.form.select / Select / <init>

<init>

- -Select(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false) + +Select(options: List<StringPair>? = null, value: String? = null, name: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false)

Parameters

options - an optional list of options (label to value pairs) for the select control

value - selected value

+

+name - the name attribute of the generated HTML input element

multiple - allows multiple value selection (multiple values are comma delimited)

@@ -22,7 +24,7 @@

label - label text bound to the input element

-rich - determines if label can contain HTML code

+rich - determines if label can contain HTML code

Constructor

diff --git a/api/pl.treksoft.kvision.form.select/-select/disabled.html b/api/pl.treksoft.kvision.form.select/-select/disabled.html deleted file mode 100644 index 079be6cc..00000000 --- a/api/pl.treksoft.kvision.form.select/-select/disabled.html +++ /dev/null @@ -1,16 +0,0 @@ - - - -Select.disabled - kvision - - - -kvision / pl.treksoft.kvision.form.select / Select / disabled
-
-

disabled

- -open var disabled: Boolean -

Overrides FormControl.disabled

-

Determines if the field is disabled.

- - diff --git a/api/pl.treksoft.kvision.form.select/-select/index.html b/api/pl.treksoft.kvision.form.select/-select/index.html index 1ad7980a..ee8b39f9 100644 --- a/api/pl.treksoft.kvision.form.select/-select/index.html +++ b/api/pl.treksoft.kvision.form.select/-select/index.html @@ -20,7 +20,7 @@

<init>

-Select(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false) +Select(options: List<StringPair>? = null, value: String? = null, name: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false) @@ -47,15 +47,6 @@ -

disabled

- - -open var disabled: Boolean -

Determines if the field is disabled.

- - - -

emptyOption

@@ -119,15 +110,6 @@ -

name

- - -var name: String? -

The name attribute of the generated HTML select element.

- - - -

options

@@ -173,15 +155,6 @@ -

size

- - -open var size: InputSize? -

Input control size.

- - - -

style

@@ -400,7 +373,7 @@

select

-fun Container.select(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.() -> Unit = null): Select +fun Container.select(options: List<StringPair>? = null, value: String? = null, name: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.() -> Unit = null): Select

DSL builder extension function.

diff --git a/api/pl.treksoft.kvision.form.select/-select/name.html b/api/pl.treksoft.kvision.form.select/-select/name.html deleted file mode 100644 index 06181eaf..00000000 --- a/api/pl.treksoft.kvision.form.select/-select/name.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Select.name - kvision - - - -kvision / pl.treksoft.kvision.form.select / Select / name
-
-

name

- -var name: String? -

The name attribute of the generated HTML select element.

- - diff --git a/api/pl.treksoft.kvision.form.select/-select/select.html b/api/pl.treksoft.kvision.form.select/-select/select.html index 047f4755..5ad4159c 100644 --- a/api/pl.treksoft.kvision.form.select/-select/select.html +++ b/api/pl.treksoft.kvision.form.select/-select/select.html @@ -8,8 +8,8 @@ kvision / pl.treksoft.kvision.form.select / Select / select

select

- -fun Container.select(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.() -> Unit = null): Select + +fun Container.select(options: List<StringPair>? = null, value: String? = null, name: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.() -> Unit = null): Select

DSL builder extension function.

It takes the same parameters as the constructor of the built component.

diff --git a/api/pl.treksoft.kvision.form.select/-select/size.html b/api/pl.treksoft.kvision.form.select/-select/size.html deleted file mode 100644 index ade5ee70..00000000 --- a/api/pl.treksoft.kvision.form.select/-select/size.html +++ /dev/null @@ -1,16 +0,0 @@ - - - -Select.size - kvision - - - -kvision / pl.treksoft.kvision.form.select / Select / size
-
-

size

- -open var size: InputSize? -

Overrides FormControl.size

-

Input control size.

- - -- cgit