maxlength for textarea

Hi,

since yii2 2.0.3 it is possible to automatically set the maxlength attribute of a test input by writting :




 echo $form->field($model, 'name')

 ->textInput(['maxlenngth' => true]);



textInput() API doc

How is it possible to do the same but with a textabrea ?

ciao

B)