Before saving, I wanted to make a confirmation, I registered the data-confirm and now the window is called 2 times before sending the form
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; ?> <?php $form = ActiveForm::begin()?> <?= $form->field($model, 'name')->textInput() ?> <?= Html::submitButton('Сохранить', ['data-confirm' => 'Точно Сохранить'])?> <?php ActiveForm::end(); ?> What could be the problem, or is it a bug?