open class Text : AbstractText
Form field text component.
Text(type: TextInputType = TextInputType.TEXT, value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false) |
var autocomplete: Boolean?
Determines if autocomplete is enabled for the input element. |
|
val input: TextInput
The actual input component. |
|
var type: TextInputType
Text input type. |
var autofocus: Boolean?
Determines if the text input is automatically focused. |
|
val flabel: FieldLabel
Form field label. |
|
var label: String?
The label text bound to the text input element. |
|
var maxlength: Int?
Maximal length of the text input value. |
|
var placeholder: String?
The placeholder for the text input. |
|
var readonly: Boolean?
Determines if the text input is read-only. |
|
var rich: Boolean
Determines if label can contain HTML code. |
|
var startValue: String?
The value attribute of the generated HTML input element. |
|
val validationInfo: HelpBlock
Validation info component. |
|
open var value: String?
Text input value. |
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. |
|
open fun removeEventListeners(): Widget
Removes all event listeners from current widget. |
|
open fun <T : Widget> setEventListener(block: SnOn<T>.() -> Unit): Widget
Sets an event listener for current widget, keeping the actual type of component. open fun setEventListener(block: SnOn<Widget>.() -> Unit): Widget
Sets an event listener for current widget. |
fun Container.text(type: TextInputType = TextInputType.TEXT, value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, init: (Text.() -> Unit)? = null): Text
DSL builder extension function. |
fun <T> Any?.createInstance(vararg args: dynamic): T
Helper function for creating JavaScript objects from dynamic constructors. |
open class Password : Text
Form field password component. |