コード例 #1
0
 /**
  * Renders a radio button list for a model attribute of type ENUM.
  * This method is a wrapper of {@link GxHtml::enumRadioButtonList}.
  * Please check {@link GxHtml::enumRadioButtonList} for detailed information
  * about the parameters for this method.
  * @param CModel $model The data model
  * @param string $attribute The attribute
  * @param array $htmlOptions Additional HTML attributes.
  * @return string The generated checkbox list
  */
 public function enumRadioButtonList($model, $attribute, $htmlOptions = array())
 {
     return GxHtml::enumRadioButtonList($model, $attribute, $htmlOptions);
 }