Skip to content

simple checkbox #206

@leejoramo-d51

Description

@leejoramo-d51

I am trying to get a simple single checkbox to work. I can't get the value to work. The two closest approaches are have found are array/multipleCheckbox and string/checkbox. However, neither is quite what I want. Here is the javascript:

    blue: fields.array({
        choices: { one: 'item 1' },
        widget: widgets.multipleCheckbox()
    }),
    green: fields.string({
        value: 'abc',
        widget: widgets.checkbox()
    }),

and the resulting HTML:

<div class="field">
    <fieldset>
        <legend>Blue</legend>
        <input type="checkbox" name="blue" id="id_blue_one" value="one" />
        <label for="id_blue_one">
            item 1
        </label>
    </fieldset>
</div>
<div class="field">
    <label for="id_green">Green</label>
    <input type="checkbox" name="green" id="id_green" value="on" />
</div>

Using the array/multipleCheckbox I actually get the <input> code I want. It has the correctly set value, but it is wrapped in an unwanted <fieldset>.

The other version using string/checkbox doesn't have the <fieldset> but the value incorrectly set to "on".

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions