Input Form Properties
This interface offers a convenience property for input form based components.
By setting the readonly property to `true` the component should become readonly.
Example usage:
open class MyComponent : InputFormProperties by InputFormMixin() {
}
// use the property offered by the interface
val readonly = storeOf(true)
myControl {
readonly(readonly.value)
}Functions
Properties
Inheritors
CheckboxGroupComponent
Link copied to clipboard
CheckboxComponent
Link copied to clipboard
InputFormMixin
Link copied to clipboard
InputFieldComponent
Link copied to clipboard
RadioGroupComponent
Link copied to clipboard
RadioComponent
Link copied to clipboard
SelectFieldComponent
Link copied to clipboard
SwitchComponent
Link copied to clipboard
TextAreaComponent
Link copied to clipboard
TypeAheadComponent
Link copied to clipboard