activeCheckBoxListControlGroup() public static method

Generates a control group with a check box list for a model attribute.
See also: self::activeControlGroup
public static activeCheckBoxListControlGroup ( CModel $model, string $attribute, array $data = [], array $htmlOptions = [] ) : string
$model CModel the data model.
$attribute string the attribute.
$data array data for generating the list options (value=>display).
$htmlOptions array additional HTML attributes.
return string the generated control group.
Example #1
0
 public function testActiveCheckBoxListControlGroup()
 {
     $I = $this->codeGuy;
     $html = TbHtml::activeCheckBoxListControlGroup(new Dummy(), 'checkboxList', array('0', '2'), array('Option 1', 'Option 2', 'Option 3'));
     $group = $I->createNode($html, 'div.control-group');
     $controls = $group->filter('div.controls');
     $I->seeNodeChildren($controls, array('input[type=hidden]', 'label.checkbox', 'label.checkbox', 'label.checkbox'));
 }
 /**
  * Generates a control group with a check box list for a model attribute.
  * @param CModel $model the data model.
  * @param string $attribute the attribute name.
  * @param array $data data for generating the list options (value=>display).
  * @param array $htmlOptions additional HTML attributes.
  * @return string the generated row.
  * @see TbHtml::activeCheckBoxListControlGroup
  */
 public function checkBoxListControlGroup($model, $attribute, $data, $htmlOptions = array())
 {
     $htmlOptions = $this->processRowOptions($model, $attribute, $htmlOptions);
     return TbHtml::activeCheckBoxListControlGroup($model, $attribute, $data, $htmlOptions);
 }