Open Sparkinzy opened 3 years ago
在列展开expand中添加默认动作,无法触发点击事件
Controller:
$grid->column('manage','管理') ->display('操作') ->expand(function(Grid\Displayers\Expand $expand){ $actions[] = TestAction::make(); return view('admin.manage',[ 'actions'=>$actions, ]); });
<div class="card"> <div class="card-body"> @foreach($actions as $action) @if($action instanceof \Dcat\Admin\Actions\Action) {!! $action->render() !!} @else {{ $action }} @endif @endforeach </div> </div>
因为expand是通过js动态生成的,后续会优化这个功能
Description:
在列展开expand中添加默认动作,无法触发点击事件
Steps To Reproduce:
Controller:
admin/manage.blade.php