0
A
回答
1
你可以做到這一點的只是覆蓋的yii\grid\ActionColumn
的button
屬性和設置屬性target='_blank'
到鏈接。
e.g,
[
'class' => 'yii\grid\ActionColumn',
'buttons' => [
'view' => function ($url, $model) {
return Html::a('<span class="glyphicon glyphicon-eye-open" title="View Details"></span>', $url, ['data-pjax' => 0, 'target' => "_blank"]);
},
'update' => function ($url, $model) {
return Html::a('<span class="glyphicon glyphicon-pencil" title="Update"></span>',$url, ['data-pjax' => 0, 'target' => "_blank"]);
},
'delete' => function ($url, $model) {
return Html::a('<span class="glyphicon glyphicon-trash" title= "Delete"></span>', $url, ['data-pjax' => 0, 'target' => "_blank"]);
},
],
],
相關問題
- 1. 在行上點擊新窗口中打開div點擊
- 2. PyQt的上點擊新窗口打開
- 3. ASP菜單上的新窗口點擊
- 4. 點擊格在新窗口中打開
- 5. 谷歌地圖 - 點擊標記點擊加載窗口點擊
- 6. YII2 - 錨點標記點擊的部分更新點擊
- 7. 按鈕點擊不打開新窗口
- 8. 每次點擊新彈出窗口
- 9. WPF:點擊按鈕打開新窗口
- 10. JApplet打開新窗口,當點擊jButton3
- 11. 模態窗口先點擊
- 12. 點擊彈出窗口
- 13. 點擊退出pygame窗口
- 14. 按鈕上的關閉窗口點擊
- 15. FancyBox,讓Ajax在窗口加載點擊/點擊
- 16. 停止窗口從重點點擊它
- 17. 上點擊打開一個新的窗口,在軌提交
- 18. 在圖像上的新窗口中打開PDF點擊
- 19. 重新加載/刷新按鈕上的JFrame窗口點擊
- 20. 雙擊TreeView導致MenuItem點擊新窗口
- 21. 在SmartGWT窗口外部處理點擊
- 22. 在信息窗口點擊iphone
- 23. 點擊模式窗口中的Highcharts點擊
- 24. 防止點擊窗口時綁定點擊?
- 25. Shift +點擊Firefox中的Linkbutton打開新窗口而不是點擊OnClick
- 26. 點擊重新定位根節點並調整窗口
- 27. 如何刷新按鈕上的extjs窗口(Ext.Window)點擊
- 28. 用戶點擊彈出窗口上的保存按鈕刷新主窗口
- 29. 節點Webkit的托盤上點擊帶來的窗口前
- 30. jQuery - 不要在'mousemove'上點擊'點擊'
你有沒有使用AJAX的GridView? –