示例#1
0
 /**
  * Renders an inline radio button list for a model attribute
  * @param CModel $model the data model.
  * @param string $attribute the attribute.
  * @param array $data data for generating the list options (value=>display)
  * @param array $htmlOptions additional HTML attributes.
  * @return string the generated radio button list.
  * @see BsHtml::activeInlineRadioButtonList
  */
 public function inlineRadioButtonList($model, $attribute, $data, $htmlOptions = array())
 {
     return BsHtml::activeInlineRadioButtonList($model, $attribute, $data, $htmlOptions);
 }