form Panel
inline fun <K : Any> Container.formPanel(method: FormMethod? = null, action: String? = null, enctype: FormEnctype? = null, type: FormType? = null, condensed: Boolean = false, horizRatio: FormHorizontalRatio = FormHorizontalRatio.RATIO_2, classes: Set<String>? = null, className: String? = null, customSerializers: Map<KClass<*>, <ERROR CLASS><out <ERROR CLASS>>>? = null, noinline init: FormPanel<K>.() -> Unit? = null): FormPanel<K>
Content copied to clipboard
DSL builder extension function.
It takes the same parameters as the constructor of the built component.
inline fun <K : Any, S> Container.formPanel(state: ObservableState<S>, method: FormMethod? = null, action: String? = null, enctype: FormEnctype? = null, type: FormType? = null, condensed: Boolean = false, horizRatio: FormHorizontalRatio = FormHorizontalRatio.RATIO_2, classes: Set<String>? = null, className: String? = null, customSerializers: Map<KClass<*>, <ERROR CLASS><out <ERROR CLASS>>>? = null, noinline init: FormPanel<K>.(S) -> Unit): FormPanel<K>
Content copied to clipboard
DSL builder extension function for observable state.
It takes the same parameters as the constructor of the built component.