如何创建诸如“ new”之类的通用动作,该动作将成为一个动作,例如发送ajax请求以获取某种信息。 我正在尝试通过config / packages / easy_admin.yaml
添加操作easy_admin:
entities:
Users:
list:
actions:
- { name: 'refresh', label: 'Refresh', icon: 'sync' }
但是它为列表中的每一行添加了“刷新”链接。
我将不胜感激,例如,您也可以链接信息。
答案 0 :(得分:1)
目前尚不支持。
https://github.com/EasyCorp/EasyAdminBundle/issues/1400
您必须覆盖默认列表模板才能添加自定义按钮:
{# /templates/bundles/EasyAdminBundle/default/list.html.twig #}
{% extends '@!EasyAdmin/default/list.html.twig' %}
{% block global_actions %}
{{ parent() }}
{# Add your code here, for example a button on the 'Users' list #}
{% if _entity_config.name == "Users" %}
<div class="button-action">
<a class="btn btn-primary" href="#">Refresh</a>
</div>
{% endif %}
{% endblock %}