Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常对于 many_many 关系网格字段中的条目只有一个取消链接功能。但这很乱。
我怎样才能添加删除选项?
您可以使用:
$config->addComponent(new GridFieldDeleteAction(false));
这将添加一个删除按钮。该false参数指定它是一个删除按钮而不是unlink。$config是你的GridFieldConfig实例。
false
$config
GridFieldConfig