mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 06:15:19 +08:00
Fixes #2737
This commit is contained in:
@ -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',
|
||||
],
|
||||
]) ?>
|
||||
|
@ -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',
|
||||
]);
|
||||
|
Reference in New Issue
Block a user