open class TextAreaInput : AbstractTextInput
Basic textarea component.
TextAreaInput(cols: Int? = null, rows: Int? = null, value: String? = null, classes: Set<String> = setOf()) |
var cols: Int?
Number of columns. |
|
var rows: Int?
Number of rows. |
|
var wrapHard: Boolean
Determines if hard wrapping is enabled for the textarea element. |
var autofocus: Boolean?
Determines if the text input is automatically focused. |
|
open var disabled: Boolean
Determines if the field is disabled. |
|
var maxlength: Int?
Maximal length of the text input value. |
|
open var name: String?
The name attribute of the generated HTML input element. |
|
var placeholder: String?
The placeholder for the text input. |
|
var readonly: Boolean?
Determines if the text input is read-only. |
|
open var size: InputSize?
The size of the input. |
|
var startValue: String?
The value attribute of the generated HTML input element. |
|
open var validationStatus: ValidationStatus?
The validation status of the input. |
|
var value: String?
Text input value. |
open fun getSnAttrs(): List<StringPair>
Returns list of element attributes in the form of a List. |
|
open fun render(): VNode
Renders current component as a Snabbdom vnode. |
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 getSnClass(): List<StringBoolPair>
Returns list of CSS class names for current widget in the form of a List. |
fun Component.addBsBgColor(bsBgColor: BsBgColor): Unit |
|
fun Component.addBsBorder(vararg bsBorder: BsBorder): Unit |
|
fun Component.addBsClearfix(): Unit |
|
fun Component.addBsColor(bsColor: BsColor): Unit |
|
fun Component.addBsRounded(vararg bsRounded: BsRounded): Unit |
|
fun Widget.contextMenu(fixedPosition: Boolean = false, classes: Set<String> = setOf(), init: (ContextMenu.() -> Unit)? = null): ContextMenu
DSL builder extension function. |
|
fun <T> Any?.createInstance(vararg args: dynamic): T
Helper function for creating JavaScript objects from dynamic constructors. |
|
fun Component.removeBsBgColor(bsBgColor: BsBgColor): Unit |
|
fun Component.removeBsBorder(vararg bsBorder: BsBorder): Unit |
|
fun Component.removeBsClearfix(): Unit |
|
fun Component.removeBsColor(bsColor: BsColor): Unit |
|
fun Component.removeBsRounded(vararg bsRounded: BsRounded): Unit |
|
fun Widget.setContextMenu(contextMenu: ContextMenu): Widget
Sets context menu for the current widget. |
|
fun Widget.style(className: String? = null, init: (Style.() -> Unit)? = null): Style
DSL builder extension function. |