From a81c549e277d1a07e87cf8e2eecf89662deda323 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sun, 23 Dec 2018 01:32:27 +0100 Subject: API documentation for KVision 0.0.22 --- .../-ajax-options/index.html | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'api/pl.treksoft.kvision.form.select/-ajax-options/index.html') diff --git a/api/pl.treksoft.kvision.form.select/-ajax-options/index.html b/api/pl.treksoft.kvision.form.select/-ajax-options/index.html index fa4dcb68..9353a26d 100644 --- a/api/pl.treksoft.kvision.form.select/-ajax-options/index.html +++ b/api/pl.treksoft.kvision.form.select/-ajax-options/index.html @@ -18,7 +18,7 @@

<init>

-AjaxOptions(url: String, preprocessData: (dynamic) -> dynamic, beforeSend: (JQueryXHR) -> dynamic = null, data: dynamic = null, httpType: HttpType = HttpType.GET, dataType: DataType = DataType.JSON, minLength: Int = 0, cache: Boolean = true, clearOnEmpty: Boolean = true, clearOnError: Boolean = true, emptyRequest: Boolean = false, requestDelay: Int = AJAX_REQUEST_DELAY, restoreOnError: Boolean = false) +AjaxOptions(url: String? = null, preprocessData: (dynamic) -> dynamic = null, beforeSend: (JQueryXHR, dynamic) -> dynamic = null, data: dynamic = null, httpType: HttpType = HttpType.GET, dataType: DataType = DataType.JSON, minLength: Int = 0, cache: Boolean = true, clearOnEmpty: Boolean = true, clearOnError: Boolean = true, emptyRequest: Boolean = false, requestDelay: Int = AJAX_REQUEST_DELAY, restoreOnError: Boolean = false, preserveSelected: Boolean = false, processData: Boolean = false) @@ -30,7 +30,7 @@

beforeSend

-val beforeSend: (JQueryXHR) -> dynamic +val beforeSend: (JQueryXHR, dynamic) -> dynamic

JQuery ajax.beforeSend option

@@ -116,6 +116,20 @@ option

+

preserveSelected

+ + +val preserveSelected: Boolean + + + +

processData

+ + +val processData: Boolean + + +

requestDelay

@@ -138,7 +152,7 @@ option

url

-val url: String +val url: String?

the url address

-- cgit