kartik-v / yii2-widget-activeform

Enhanced Yii2 active-form and active-field with full bootstrap styling support (sub repo split from yii2-widgets).
http://demos.krajee.com/widget-details/active-form
Other
64 stars 35 forks source link

maxlength for activeField #52

Closed vkmel closed 9 years ago

vkmel commented 9 years ago

Hi Kartik,

How to add the maxlength attribute to an input field. ex: the following one doesnt work

echo $form->field($model, 'email', [ 'addon' => ['prepend' => ['content' => '@']], 'options' => ['maxlength'=>127, 'placeholder' => 'Enter a valid email...'], ]);

kartik-v commented 9 years ago

Refer yii docs... you can try something like this below:

echo $form->field($model, 'email', ['addon' => ['prepend' => ['content' => '@']]])
    ->textInput(['maxlength'=>127, 'placeholder' => 'Enter a valid email...'])
]);