Exemplo n.º 1
0
 /**
  * Generates a control group with a text area for a model attribute.
  * @param CModel $model the data model.
  * @param string $attribute the attribute name.
  * @param array $htmlOptions additional HTML attributes.
  * @return string the generated row.
  * @see BSHtml::activeTextAreaControlGroup
  */
 public function textAreaControlGroup($model, $attribute, $htmlOptions = array())
 {
     $htmlOptions = $this->processRowOptions($model, $attribute, $htmlOptions);
     return BSHtml::activeTextAreaControlGroup($model, $attribute, $htmlOptions);
 }