Help Extensions not working in Symfony 2.3.3
Closed this issue · 5 comments
ColinMacD commented
I think field is no longer and extendible form type and form should be used instead. If I make the change myself I no longer get errors, but the help messages doesn't render in my template.
bobvandevijver commented
In Resources/views/Form/field_type_help.html.twig change
{% block field_row %}
{# rest of code #}
{% endblock field_row %}
to
{% block form_row %}
{# rest of code #}
{% endblock form_row %}
bobvandevijver commented
@ColinMacD Or write your own "help" extension, it is not so difficult, and more flexibel.
ColinMacD commented
Thanks for the response, I'll give that a go.
DavidBadura commented
@ColinMacD fixes the pull request #45 your problem?
smoench commented
has been fixed