Closed vkmel closed 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...'])
]);
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...'], ]);