From 61545b3f1fb1844af350d187edd26285e98f0466 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 26 Feb 2018 14:21:46 +0100 Subject: API documentation update --- .../-date-time-input/index.html | 60 +++++++++++++++++++--- 1 file changed, 53 insertions(+), 7 deletions(-) (limited to 'docs/api/pl.treksoft.kvision.form.time/-date-time-input/index.html') diff --git a/docs/api/pl.treksoft.kvision.form.time/-date-time-input/index.html b/docs/api/pl.treksoft.kvision.form.time/-date-time-input/index.html index 81e6f47e..e1ae5ada 100644 --- a/docs/api/pl.treksoft.kvision.form.time/-date-time-input/index.html +++ b/docs/api/pl.treksoft.kvision.form.time/-date-time-input/index.html @@ -120,7 +120,7 @@

size

-var size: INPUTSIZE? +var size: InputSize?

The size of the input.

@@ -167,6 +167,15 @@ +

draggable

+ + +var draggable: Boolean? +

Determines if the current widget is draggable.

+ + + +

id

@@ -217,6 +226,15 @@ +

afterDestroy

+ + +open fun afterDestroy(): Unit +

Method called after destroying Snabbdom vnode.

+ + + +

afterInsert

@@ -333,20 +351,20 @@ -

afterDestroy

+

afterPostpatch

-open fun afterDestroy(): Unit -

Method called after destroying Snabbdom vnode.

+open fun afterPostpatch(node: VNode): Unit +

Method called after updating Snabbdom vnode.

-

afterPostpatch

+

clearDragDropData

-open fun afterPostpatch(node: VNode): Unit -

Method called after updating Snabbdom vnode.

+open fun clearDragDropData(): Unit +

Clears D&D data for the current widget. It also makes it not draggable.

@@ -442,6 +460,34 @@ +

setDragDropData

+ + +open fun setDragDropData(format: String, data: String): Unit +

Sets D&D data for the current widget. It also makes it draggable.

+ + + + +

setDropTarget

+ + +open fun setDropTarget(format: String, callback: (DragEvent) -> Unit): Unit
+open fun setDropTarget(formats: Set<String>? = null, callback: (DragEvent) -> Unit): Unit +

Sets the current widget as a D&D drop target.

+ + + + +

setDropTargetData

+ + +open fun setDropTargetData(format: String, callback: (String?) -> Unit): Unit +

Sets the current widget as a D&D drop target with helper callback accepting String data.

+ + + +

setEventListener

-- cgit