Package-level declarations
Text input components, with password, text area, rich text area and typeahead support.
Types
Link copied to clipboard
abstract class AbstractText(label: String? = null, rich: Boolean = false, val floating: Boolean = false, className: String? = null) : SimplePanel, StringFormControl, MutableState<String?>
Base class for form field text components.
Link copied to clipboard
abstract class AbstractTextInput(value: String? = null, maxlength: Int? = null, className: String? = null) : Widget, GenericFormComponent<String?> , FormInput, MutableState<String?>
Base class for basic text components.
Link copied to clipboard
interface MaskFactory
Text input mask controller factory.
Link copied to clipboard
object MaskManager
Text input mask controller manager.
Link copied to clipboard
interface MaskOptions
Generic text input mask options.
Link copied to clipboard
open class TextAreaInput(cols: Int? = null, rows: Int? = null, value: String? = null, className: String? = null, init: TextAreaInput.() -> Unit? = null) : AbstractTextInput
Basic textarea component.
Functions
Link copied to clipboard
fun Container.textAreaInput(cols: Int? = null, rows: Int? = null, value: String? = null, className: String? = null, init: TextAreaInput.() -> Unit? = null): TextAreaInput
DSL builder extension function.