问答 / 17 / 3 / 创建于 3年前
我知道点击【编辑】小按钮可以编辑。目前点击一行时,什么操作也没有。有办法点击一行时,就跳转到编辑页面吗?
可以修改成 鼠标右键 弹出操作栏 行的使用和扩展《Dcat Admin 中文文档》
$grid->column('title')->link(fn() => admin_route('posts.edit',[$this->id]),'self');
// 列表页 public function index(Content $content) { Admin::script( // 点击行操作 <<<JS $('tbody').on('click', 'tr td', function () { var index = $(this).index(); if (index > 0) { // 排除第一列的 checkbox } }); JS ); return $content ->translation($this->translation()) ->title($this->title()) ->description($this->description()['index'] ?? trans('admin.list')) ->body($this->grid()); }
我要举报该,理由是:
可以修改成 鼠标右键 弹出操作栏 行的使用和扩展《Dcat Admin 中文文档》