This commit is contained in:
Alexander Makarov
2014-03-13 19:42:48 +04:00
parent f8667f1a86
commit cd8e626018
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ $this->params['breadcrumbs'][] = $this->title;
<?= "<?= " ?>Html::a('Delete', ['delete', <?= $urlParams ?>], [
'class' => 'btn btn-danger',
'data' => [
'confirm' => Yii::t('app', 'Are you sure to delete this item?'),
'confirm' => Yii::t('app', 'Are you sure you want to delete this item?'),
'method' => 'post',
],
]) ?>

View File

@ -105,7 +105,7 @@ class ActionColumn extends Column
$this->buttons['delete'] = function ($url, $model) {
return Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, [
'title' => Yii::t('yii', 'Delete'),
'data-confirm' => Yii::t('yii', 'Are you sure to delete this item?'),
'data-confirm' => Yii::t('yii', 'Are you sure you want to delete this item?'),
'data-method' => 'post',
'data-pjax' => '0',
]);