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

Popular posts from this blog

javascript - Laravel datatable invalid JSON response -

java - Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; -

sql server 2008 - My Sql Code Get An Error Of Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '8:45 AM' to data type int -