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/index.html | 31 ++-------------------- 1 file changed, 2 insertions(+), 29 deletions(-) (limited to 'api/pl.treksoft.kvision.form.select/-select/index.html') 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.

-- cgit