helpers\BaseHtml activeTextarea()

activeTextarea() public static method

Generates a textarea tag for the given model attribute.

The model attribute value will be used as the content in the textarea.

public static string activeTextarea ( $model, $attribute, $options = [] )
$model yii\base\Model

The model object

$attribute string

The attribute name or expression. See getAttributeName() for the format about attribute expression.

$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 encode(). See renderTagAttributes() for details on how attributes are being rendered. The following special options are recognized:

  • maxlength: integer|boolean, when maxlength is set true and the model attribute is validated by a string validator, the maxlength option will take the value of yii\validators\StringValidator::$max. This option is available since version 2.0.6.
return string

The generated textarea tag

doc_Yii
2016-10-30 17:04:56
Comments
Leave a Comment

Please login to continue.