n8design/htwoo

Implement OptionList as fieldset

Opened this issue · 1 comments

Research update to implement OptionList as a HTML fieldset.

Are you referring to radio buttons here? In my case this just works.

<fieldset class="hoo-radiobutton-group">
    <legend class="hoo-label">Field name</legend>
    <div>
        <input class="hoo-radio" type="radio" id="Choice1" name="Choice1" />
        <label for="Choice1">Choice 1</label>
    </div>
    <div>
        <input class="hoo-radio" type="radio" id="Choice2" name="Choice2" />
        <label for="Choice2">Choice 2</label>
    </div>
</fieldset>