Answer the question
In order to leave comments, you need to log in
\yii\widgets\MaskedInput does not work, what could be the reason?
You need to add a phone validation mask to the field, I add it in the usual Yii2 design - everything works:
<?= $form->field($model, 'subject')->widget(\yii\widgets\MaskedInput::className(), [
'mask' => '999-999-9999',
]) ?>
<?= $form->field($model, 'phone')->widget(\yii\widgets\MaskedInput::className(), [
'mask' => '999-999-9999',
]) ?>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question