Uploaded image for project: 'Magnolia Form Module'
  1. Magnolia Form Module
  2. MGNLFORM-27

Using Radios or checkboxes, a additional fieldset is missing when the legend is empty.

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • Minor
    • 1.0.2
    • 1.0
    • None
    • None

    Description

      Using Radios or checkboxes, a additional fieldset is missing when the legend is empty. Radios and checkboxes have to wrapped with a fieldset and describe by an optional legend.

      wrong:

      <div>
      <label for="field-1" id="">
      <input type="checkbox" value="h" name="" id="field-1" />
      Bitte rufen Sie mich schnellstmöglich zurück.
      </label>
      </div>

      better:

      <div>
      <fieldset>
      <legend>Legend</legend> (this is optional)
      <label for="field-1">
      <input type="checkbox" id="field-1" name="checkbox-grp1" />
      <span>Checkboxoption 1</span>
      </label>
      </fieldset>
      </div>

      Checklists

        Acceptance criteria

        Attachments

          Activity

            People

              tmiyar Teresa Miyar
              tmiyar Teresa Miyar
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Checklists

                  Bug DoR
                  Task DoD