open class DropDown : SimplePanel
Bootstrap dropdown component.
DropDown(text: String, elements: List<StringPair>? = null, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf()) |
var block: Boolean
Determines if the dropdown button takes all the space horizontally. |
|
var disabled: Boolean
Determines if the dropdown is disabled. |
|
var dropup: Boolean
Determines if the dropdown is showing upwards. |
|
var icon: String?
The icon of the dropdown button. |
|
var image: ResString?
The image on the dropdown button. |
|
var size: BUTTONSIZE?
The size of the dropdown button. |
|
var style: BUTTONSTYLE
The style of the dropdown button. |
|
var text: String
Label of the dropdown button. |
|
open var width: CssSize?
Width of the dropdown button. |
open fun add(child: Component): SimplePanel
Adds given component to the current container. |
|
open fun addAll(children: List<Component>): SimplePanel
Adds a list of components to the current container. |
|
open fun afterInsert(node: VNode): Unit
Method called after inserting Snabbdom vnode into the DOM. |
|
open fun getChildren(): List<Component>
Returns a list of children of the current container. |
|
open fun getSnClass(): List<StringBoolPair>
Returns list of CSS class names for current widget in the form of a List. |
|
open fun remove(child: Component): SimplePanel
Removes given component from the current container. |
|
open fun removeAll(): SimplePanel
Removes all children from the current container. |
|
open fun toggle(): Unit
Toggles dropdown visibility. |
fun addInternal(child: Component): SimplePanel
Protected and final method to add given component to the current container. |
|
open fun childrenVNodes(): Array<VNode>
Returns the array of the children Snabbdom vnodes. |
|
open fun render(): VNode
Renders current component as a Snabbdom vnode. |