cakephp - Want to add href link for each checkbox in cake php -
echo $this->form->input('name_group', array('multiple' => 'checkbox', 'options' => $val,'label' => false,'class' => 'col-lg-4 col-md-4 col-sm-4 col-xs-6 custom_no_padding custom_checkbox','selected' => $selected));
and want output below:
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-6 custom_no_padding custom_checkbox"> <input type="checkbox"> <label><a href="test1">value1</label> </div> <div class="col-lg-4 col-md-4 col-sm-4 col-xs-6 custom_no_padding custom_checkbox"> <input type="checkbox"><label><a href="test2">value2</label> </div>
Comments
Post a Comment