From fb7ff5b8bf2073a8d7b78011b9edffc830dc63cb Mon Sep 17 00:00:00 2001
From: Robert Jaros
open class HelpBlock : Tag
-Helper class for Bootstrap help block element.
+open class HelpText : Tag
+Helper class for Bootstrap help text element.
open class InvalidFeedback : Tag
+Helper class for Bootstrap invalid feedback element.
+Base interface of a form control with a text value.
enum class ValidationStatus
+Input controls validation status.
++ + | +
+fun Container.fieldLabel(forId: String, content: String? = null, rich: Boolean = false, classes: Set<String> = setOf("control-label"), init: (FieldLabel.() -> Unit)? = null): FieldLabel
+DSL builder extension function. + |
+
+ + | +
+fun <K : Any> Container.formPanel(method: FormMethod? = null, action: String? = null, enctype: FormEnctype? = null, type: FormType? = null, condensed: Boolean = false, classes: Set<String> = setOf(), init: (FormPanel<K>.() -> Unit)? = null): FormPanel<K>
+DSL builder extension function. + |
+