InputFormProperties

interface InputFormProperties : FormProperties

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

Link copied to clipboard
open fun enabled(value: Boolean)
open fun enabled(value: Flow<Boolean>)

Properties

Link copied to clipboard
abstract val disabled: DynamicComponentProperty<Boolean>
Link copied to clipboard
abstract val readonly: DynamicComponentProperty<Boolean>

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard