Skip to content

Instantly share code, notes, and snippets.

Created March 26, 2014 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/9779920 to your computer and use it in GitHub Desktop.
Save anonymous/9779920 to your computer and use it in GitHub Desktop.
I have this code but still does not provide validation error
<?php echo $form->radioButtonListControlGroup($model, 'profile', array(
'Option one is this and that—be sure to include why it\'s great',
'Option two can is something else and selecting it will deselect option one'
));
?>
<?php echo $form->inlineRadioButtonList($model, 'profile', array(
'A','B'),
array('inline'=>false)
); ?>
For inlineRadioButtonList 'profile' label / control-label not show
Have I made a mistake in coding structure ?
Thanks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment