codeigniter_bootstrap_form_builder icon indicating copy to clipboard operation
codeigniter_bootstrap_form_builder copied to clipboard

lone checkbox

Open WillieBHines opened this issue 10 years ago • 1 comments

Is there a way to do suppress one of the labels for the checkbox group? Right now, if only one checkbox is included, it has two labels: one for the group, and one for the box itself.

WillieBHines avatar Jan 13 '16 23:01 WillieBHines

I've created a PR (#12) which might help.

Create a checkbox without a 'main' label (in the label column), with only a label right of the checkbox with:

array(
    'id' => 'checkbox_group',
    'label' => 'none',
    'type' => 'checkbox',
    'options' => array(
        array(
            'id' => 'checkbox',
            'value' => 'agree',
            'label' => 'I agree'
        )
    )
)

Or create a checkbox with only a 'main' label with:

array(
    'id' => 'checkbox_group',
    'label' => 'I agree',
    'type' => 'checkbox',
    'options' => array(
        array(
            'id' => 'checkbox',
            'value' => 'agree',
            'label' => ''
        )
    )
)

Shakespeare2000 avatar Jan 15 '16 10:01 Shakespeare2000