8

我正在使用 symfony2。我正在尝试覆盖 twig 中的默认 div 样式表单块。

首先,是否有人知道或知道字段集和列表(ul -> li)方法的可用实现?

4

4 回答 4

3

目前,我实现了这样的字段集支持:

在类型中:

public function buildView(FormView $view, FormInterface $form, array $options)
{
    $view->setAttribute('fieldsets',
            array(
                array(
                    'legend' => 'film.group.date',
                    'content'=> array(
                        'theaters_release_date',
                        'storage_media_release',
                        'storage_media_release_date',
                        'vod_release_date'
                        )),
                array(
                    'legend' => 'film.group.country',
                    'content'=> array('countries')),
                    ));
}

我有一个名为 fieldset.html.twig 的模板,它使用视图的属性:

{% macro fieldset_block(fieldset, form) %}
<fieldset{% if fieldset.subform is defined %} class="{{ fieldset.subform }}"{% endif %}>
    <legend>{{fieldset.legend | trans }}</legend>
    {% if fieldset.content is defined%}
      {% for row in fieldset.content %}
          {{ form_row(form[row]) }}
      {% endfor %}
    {% endif %}
    {% if fieldset.subform is defined %}
        {# Couldn't get some recursivity (simply call form widget) here... too bad #}
        {% if form[fieldset.subform].get('attr').fieldsets is defined %}
            {% for subfieldset in form[fieldset.subform].get('attr').fieldsets %}
                {{ _self.fieldset_block(subfieldset, form[fieldset.subform]) }}
            {% endfor %}
        {% else %}
            {% for row in form[fieldset.subform] %}
                {{ form_row(row) }}
            {% endfor %}
        {% endif %}
    {% endif %}
    {% if fieldset.items is defined%}
      {% for fieldset in fieldset.items %}
          {{ _self.fieldset_block(fieldset, form) }}
      {% endfor %}
    {% endif %}
</fieldset>
{%  endmacro %}

{% block form_widget %}
    {% for fieldset in form.get('attr').fieldsets %}
        {{ _self.fieldset_block(fieldset, form) }}
    {% endfor %}
{% endblock %}
于 2012-09-21T11:52:37.143 回答
2

这是一个简单的字段集示例: https ://gist.github.com/spcmky/8512371

要将 div 替换为列表,请查看 form_widget_compound 和 form_rows。你可以:

{% block fieldset_widget %}
    {% spaceless %}
        <fieldset {{ block('widget_container_attributes') }}>
            {% if title is defined %}<legend>{{ title }}</legend>{% endif %}
                <ul>
                {% for child in form %}
                    <li>
                        {{ form_widget(child) }}
                    </li>
                {% endfor %}
                </ul>
        </fieldset>
    {% endspaceless %}
{% endblock %}
于 2014-01-19T23:43:39.090 回答
1

默认情况下,Twig 在渲染表单时使用 div 布局。但是,您可以在表格布局中渲染表单。使用 form_table_layout.html.twig 资源来使用这样的布局:

# app/config/config.yml

twig:
    form:
        resources: ['form_table_layout.html.twig']
于 2012-01-12T14:05:05.143 回答
0

http://symfony.com/doc/2.0/cookbook/form/form_customization.html

我不知道 thoose 的实现,但欢迎您制作它们并打开 Pull Request。

于 2011-09-20T18:19:41.030 回答