===== Forms ===== Forms are an important part of any Bootstrap version. In this section, we describe our approach to rendering forms in Bootstrap 5. Reference: https://getbootstrap.com/docs/5.0/forms/validation/ Structure of a rendered field ----------------------------- A rendered fields has these components: - wrapper - label (optional) - field - help text (optional) - validation texts (optional) See below for an example. .. code:: html
An alias is fine.
Looks good!
How and in which order these will components be rendered differs per widget type. 1. We must support `bootstrap_formset`, `bootstrap_form`, and `bootstrap_field` to render a sensible default layout for the above components. 2. We should offer support to easily set or override the classes for the wrapper. 3. We could offert the option to override the templates used to generate this output. Input groups for more complex fields ------------------------------------ Reference: https://getbootstrap.com/docs/5.0/forms/input-group/ Bootstrap 5 offers Input groups to combine fields and add-ons (both before and after the field). 1. We must support separate rendering of labels, fields, help texts and errors so that users can build their own input groups. 2. We should offer support for add-ons (before and after) as part of `bootstrap_field`. 3. We could add support in form, field or widget definition to define add-ons in Python code. Note: input-group needs has-validation https://github.com/twbs/bootstrap/blob/6b3254536bac263c39e3a536c3c13945210d91b2/site/content/docs/5.0/migration.md Floating labels --------------- Reference: https://getbootstrap.com/docs/5.0/forms/floating-labels/ This behavior can be triggered by setting `layout="floating"`. Setting `layout="floating"` has no effect on widgets that are not supported. Floating labels are supported for widgets that can use `form-control`, with the exception of widgets that have special markup. Floating labels are not supported on: - `FileInput` and its descendants - `TextInput` with type `color` - Fields that have `addon_before` or `addon_after` defined The `Select` widget can only float if it has the default size, does not support multiple selects, and has no special markup. Horizontal forms ---------------- Reference: https://getbootstrap.com/docs/5.0/forms/layout/#horizontal-form This behavior can be triggered by setting `layout="horizontal"`. In a horizontal layout, labels and field will receive different styling, resulting in a horizontal layout on supported viewports. These parameters contain the classes for labels and fields: - `horizontal_label_class` The class for the label - `horizontal_field_class` The class for the section with field, help text and errors - `horizontal_field_offset_class` The offset for fields that have no label, or that use the label as part of their field function (such as checkbox)