如何在 Yii2 侧导航小部件中添加 confim 对话框



如何添加删除确认对话框

SideNav::widget([
'type' => SideNav::TYPE_PRIMARY,
'encodeLabels' => false,
'heading' => '<i class="glyphicon glyphicon-cog"></i> Operations',
'items' => [
[
'label' => 'Home',
'icon' => 'home',
'url' => Url::to(['/site/home', 'type' => $type]),
'active' => ($item == 'home'),
],
[
'label' => 'Delete',
'icon' => 'trash',
'url' => Url::to(['delete', 'id' => $model->id_pd]),
'linkOptions' => ['data' => ['method' => 'post', 'confirm' => 'Apakah yakin']],
],
],
]);

我的问题有一个答案:

SideNav::widget([
'type' => SideNav::TYPE_PRIMARY,
'encodeLabels' => false,
'heading' => '<i class="glyphicon glyphicon-cog"></i> Operations',
'items' => [
[
'label' => 'Home',
'icon' => 'home',
'url' => Url::to(['/site/home', 'type' => $type]),
'active' => ($item == 'home'),
],
[
'label' => 'Delete',
'icon' => 'trash',
'url' => Url::to(['delete', 'id' => $model->id_pd]),
'template' => '<a href="{url}" data-confirm="Are you sure you want to delete this item?" data-method="post">{icon}{label}</a>'
],
],
]);

相关内容

  • 没有找到相关文章

最新更新