From f3c9d405382dd81d426c7eab1f6390ec8e6dad00 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 5 Mar 2018 08:45:25 +0100 Subject: Documentation update. --- .../-drop-down/index.html | 235 --------------------- 1 file changed, 235 deletions(-) delete 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 deleted file mode 100644 index f9330ef4..00000000 --- a/docs/api/pl.treksoft.kvision.dropdown/-drop-down/index.html +++ /dev/null @@ -1,235 +0,0 @@ - - - -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.

-
-

Companion Object Functions

- - - - - - - -
-

dropDown

-
-fun Container.dropDown(text: String, elements: List<StringPair>? = null, icon: String? = null, style: ButtonStyle = ButtonStyle.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf(), init: DropDown.() -> Unit = null): DropDown -

DSL builder extension function.

-
- - -- cgit