From d8cd67062b8de6e8398dc6dfd00d201200c82414 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Fri, 9 Feb 2018 13:40:35 +0100 Subject: API doc and readme --- .../-drop-down/index.html | 221 +++++++++++++++++++++ 1 file changed, 221 insertions(+) create mode 100644 docs/api/pl.treksoft.kvision.dropdown/-drop-down/index.html (limited to 'docs/api/pl.treksoft.kvision.dropdown/-drop-down/index.html') diff --git a/docs/api/pl.treksoft.kvision.dropdown/-drop-down/index.html b/docs/api/pl.treksoft.kvision.dropdown/-drop-down/index.html new file mode 100644 index 00000000..141248f0 --- /dev/null +++ b/docs/api/pl.treksoft.kvision.dropdown/-drop-down/index.html @@ -0,0 +1,221 @@ + + + +DropDown - kvision + + + +kvision / pl.treksoft.kvision.dropdown / DropDown
+
+

DropDown

+open class DropDown : SimplePanel +

Bootstrap dropdown component.

+

Constructors

+ + + + + + + +
+

<init>

+
+DropDown(text: String, elements: List<StringPair>? = null, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf())
+

Properties

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

block

+
+var block: Boolean +

Determines if the dropdown button takes all the space horizontally.

+
+

disabled

+
+var disabled: Boolean +

Determines if the dropdown is disabled.

+
+

dropup

+
+var dropup: Boolean +

Determines if the dropdown is showing upwards.

+
+

icon

+
+var icon: String? +

The icon of the dropdown button.

+
+

image

+
+var image: ResString? +

The image on the dropdown button.

+
+

size

+
+var size: BUTTONSIZE? +

The size of the dropdown button.

+
+

style

+
+var style: BUTTONSTYLE +

The style of the dropdown button.

+
+

text

+
+var text: String +

Label of the dropdown button.

+
+

width

+
+open var width: CssSize? +

Width of the dropdown button.

+
+

Functions

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

add

+
+open fun add(child: Component): SimplePanel +

Adds given component to the current container.

+
+

addAll

+
+open fun addAll(children: List<Component>): SimplePanel +

Adds a list of components to the current container.

+
+

afterInsert

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

Method called after inserting Snabbdom vnode into the DOM.

+
+

getChildren

+
+open fun getChildren(): List<Component> +

Returns a list of children of the current container.

+
+

getSnClass

+
+open fun getSnClass(): List<StringBoolPair> +

Returns list of CSS class names for current widget in the form of a List.

+
+

remove

+
+open fun remove(child: Component): SimplePanel +

Removes given component from the current container.

+
+

removeAll

+
+open fun removeAll(): SimplePanel +

Removes all children from the current container.

+
+

toggle

+
+open fun toggle(): Unit +

Toggles dropdown visibility.

+
+

Inherited Functions

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

addInternal

+
+fun addInternal(child: Component): SimplePanel +

Protected and final method to add given component to the current container.

+
+

childrenVNodes

+
+open fun childrenVNodes(): Array<VNode> +

Returns the array of the children Snabbdom vnodes.

+
+

render

+
+open fun render(): VNode +

Renders current component as a Snabbdom vnode.

+
+ + -- cgit