Symfony 2 entity field attributes

前端 未结 1 1671
名媛妹妹
名媛妹妹 2021-01-14 00:42

I have in my form an entity field. This field looks like this:

->add(\'user\', \'entity\',array(
                                \'class\' => \'Elearni         


        
1条回答
  •  有刺的猬
    2021-01-14 00:58

    There is no build-in solutions. See this issue.

    Possible solution - use Form theming:

    {% form_theme form _self %}
    
    {% block checkbox_widget %}
        {% spaceless %}
            {% set attr = attr|merge({'class': 'userFiledCollection'}) %}
            
        {% endspaceless %}
    {% endblock checkbox_widget %}
    
    {% block body %}
        {{ form(form) }}
    {% endblock %}
    

    0 讨论(0)
提交回复
热议问题