open class CheckBoxInput : CheckInput
The basic input component rendered as HTML input type="checkbox".
CheckBoxInput(value: Boolean = false, classes: Set<String> = setOf()) |
open var disabled: Boolean
Determines if the field is disabled. |
|
var extraValue: String?
The additional String value used for the radio button group. |
|
open var name: String?
The name attribute of the generated HTML input element. |
|
open var size: InputSize?
The size of the input. |
|
var startValue: Boolean
The value attribute of the generated HTML input element. |
|
var type: CheckInputType
The type of the generated HTML input element. |
|
var value: Boolean
The selection state of the input. |
open fun afterInsert(node: VNode): Unit
Method called after inserting Snabbdom vnode into the DOM. |
|
open fun blur(): Unit
Makes the input element blur. |
|
open fun focus(): Unit
Makes the input element focused. |
|
open fun getSnAttrs(): List<StringPair>
Returns list of element attributes in the form of a List. |
|
open fun getSnClass(): List<StringBoolPair>
Returns list of CSS class names for current widget in the form of a List. |
|
open fun onClick(handler: CheckInput.(MouseEvent) -> Unit): CheckInput
A convenient helper for easy setting onClick event handler. |
|
open fun render(): VNode
Renders current component as a Snabbdom vnode. |
fun Container.checkBoxInput(value: Boolean = false, classes: Set<String> = setOf(), init: (CheckInput.() -> Unit)? = null): CheckBoxInput
DSL builder extension function. |
fun <T> Any?.createInstance(vararg args: dynamic): T
Helper function for creating JavaScript objects from dynamic constructors. |