yii\widgets\ActiveField::textarea PHP Method

textarea() public method

The model attribute value will be used as the content in the textarea.
public textarea ( array $options = [] )
$options array the tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting tag. The values will be HTML-encoded using [[Html::encode()]]. If you set a custom `id` for the textarea element, you may need to adjust the [[$selectors]] accordingly.
    public function textarea($options = [])
    {
        $options = array_merge($this->inputOptions, $options);
        $this->adjustLabelFor($options);
        $this->parts['{input}'] = Html::activeTextarea($this->model, $this->attribute, $options);
        return $this;
    }

Usage Example

 /**
  * @inheritdoc
  */
 public function textarea($options = [])
 {
     $this->initPlaceholder($options);
     Html::addCssClass($options, $this->addClass);
     $this->initDisability($options);
     return parent::textarea($options);
 }
All Usage Examples Of yii\widgets\ActiveField::textarea