2014-06-26 336 views

回答

0

嘗試使用表單自定義功能。請查看這篇文章的詳細信息 - http://symfony.com/doc/current/cookbook/form/form_customization.html 例子:

form_theme.twig.html

{% block file_widget %} 
    {% spaceless %} 
    <td>{% set type = type|default('file') %} 
     <input type="{{ type }}" {{ block('widget_attributes') }} /> 
    </td> 
    {% endspaceless %} 
{% endblock file_widget %} 

template.twig.html

{% form_theme form 'MyBundle:Form:form_theme.html.twig' %} 
{{ form_row(form.contract) }} 
+0

不錯的選擇。然而,我無法想象如何分開同一個領域... – Manolo