Skip to content

Instantly share code, notes, and snippets.

@Asgaroth
Created July 15, 2012 22:16
Show Gist options
  • Save Asgaroth/3118889 to your computer and use it in GitHub Desktop.
Save Asgaroth/3118889 to your computer and use it in GitHub Desktop.
Yii Foundation 3 Custom Elements
<div class="row">
<div class="four columns">
<?php echo $form->radioButtonListRow( $model, "field24", array(
"1" => ' Radio Button 1',
"2" => ' Radio Button 2',
"3" => ' Radio Button 3',
)); ?>
</div>
<div class="four columns">
<?php echo $form->radioButtonListRow( $model, "field25", array(
"1" => ' Radio Button 1',
"2" => ' Radio Button 2',
"3" => ' Radio Button 3',
)); ?>
</div>
<div class="four columns">
<?php echo $form->checkBoxListRow( $model, "field26", array(
"1" => ' Label for Checkbox',
"2" => ' Label for Checkbox',
"3" => ' Label for Checkbox',
)); ?>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment