20

私のフォームにはいくつかのチェックボックスがありますが、デフォルトで次のとおりです。

  • 最初のラジオ ウィジェット
  • 最初のラベル
  • 2 番目のラジオ ウィジェット
  • ラベル

SYmfony2 によって生成された html コードは次のとおりです。

  <div>
    <input ...>
    <label ...></label>
    <input ...>
    <label ...></label>
  </div>

が欲しいのは:

最初のラジオウィジェット最初のラベル
2番目のラジオウィジェット2番目のラベル

HTML コードは次のようになります。

  <label .....><input ....></label>

Choice_widget をオーバーライドする必要があると思いますが、入力とラベルを同じ行に配置する方法がわかりません

オーバーライドする必要があるかもしれないchoice_widgetは次のとおりです。

    {% block choice_widget %}
        {% spaceless %}
            {% if expanded %}
                <div {{ block('widget_container_attributes') }}>
                   {% for child in form %}
                      {{ form_widget(child) }}  {{ form_label(child) }}
                   {% endfor %}
                </div>
            {% else %}
                <select {{ block('widget_attributes') }}{% if multiple %} multiple="multiple"{% endif %}>
                {% if empty_value is not none %}
                     <option value="">{{ empty_value|trans }}</option>
                {% endif %}
                {% if preferred_choices|length > 0 %}
                    {% set options = preferred_choices %}
                    {{ block('widget_choice_options') }}
                        {% if choices|length > 0 and separator is not none %}
                            <option disabled="disabled">{{ separator }}</option>
                       {% endif %}
                {% endif %}
                {% set options = choices %}
                {{ block('widget_choice_options') }}
                </select>
           {% endif %}
      {% endspaceless %}
   {% endblock choice_widget %}
4

9 に答える 9

31

同じ問題があり、解決策が見つからなかったので、自分で解決しました。{% block choice_widget %}ブロックをオーバーライドする必要があるのは正しいです。最初のステップは、別のラベルを印刷するセクション{{ form_label(child) }}から行を削除することです。{% if expanded %}

{% block choice_widget %}
{% spaceless %}
    {% if expanded %}
        <div {{ block('widget_container_attributes') }}>
        {% for child in form %}
            {{ form_widget(child) }}
        {#  {{ form_label(child) }} <--------------------- remove this line #}  
        {% endfor %}
        </div>
    {% else %}
    <select {{ block('widget_attributes') }}{% if multiple %} multiple="multiple"{% endif %}>
        {% if empty_value is not none %}
            <option value="">{{ empty_value|trans }}</option>
        {% endif %}
        {% if preferred_choices|length > 0 %}
            {% set options = preferred_choices %}
            {{ block('widget_choice_options') }}
            {% if choices|length > 0 and separator is not none %}
                <option disabled="disabled">{{ separator }}</option>
            {% endif %}
        {% endif %}
        {% set options = choices %}
        {{ block('widget_choice_options') }}
    </select>
    {% endif %}
{% endspaceless %}
{% endblock choice_widget %}

{% block checkbox_widget %}これで、ブロック内のラベルの印刷を処理する必要があります。

{% block checkbox_widget %}
{% spaceless %}
    <label  for="{{ id }}"><input type="checkbox" {{ block('widget_attributes') }}{% if value is defined %} value="{{ value }}"{% endif %}{% if checked %} checked="checked"{% endif %} />{{ label|trans }}</label>
{% endspaceless %}
{% endblock checkbox_widget %}

{% block radio_widget %}今はラベルがないので、同じことをする必要があります。

{% block radio_widget %}
{% spaceless %}
    <label  for="{{ id }}"><input type="radio" {{ block('widget_attributes') }}{% if value is defined %} value="{{ value }}"{% endif %}{% if checked %} checked="checked"{% endif %} />{{ label|trans }}</label>
{% endspaceless %}
{% endblock radio_widget %}
于 2012-08-19T23:12:28.923 に答える
13

Alberto Gaona と James の助けを借りて、BS3 ラジオとチェックボックスを統合するための Symfony 2.4 の正しいソリューションは次のとおりです。

あなたの見解では:

{% form_theme form 'AcmeDemoBundle:Form:fields.html.twig' %}

// A radio or checkbox input
{{ form_widget(form.example) }}

次に、 fields.html.twig で ( https://github.com/symfony/symfony/blob/master/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twigをオーバーライドします。http:を参照してください: //symfony.com/doc/current/cookbook/form/form_customization.html )

{# src/Acme/DemoBundle/Resources/views/Form/fields.html.twig #}

{% block choice_widget_expanded %}
{% spaceless %}
    <div {{ block('widget_container_attributes') }}>
    {% for child in form %}
        {% if multiple %}
            <div class="checkbox">
        {% else %}
            <div class="radio">
        {% endif %}

        {{ form_widget(child) }}
        </div>
    {% endfor %}
    </div>
{% endspaceless %}
{% endblock choice_widget_expanded %}

{% block checkbox_widget %}
{% spaceless %}
{% if label is empty %}
    {% set label = name|humanize %}
{% endif %}
    <label  for="{{ id }}">
        <input type="checkbox" {{ block('widget_attributes') }}{% if value is defined %} value="{{ value }}"{% endif %}{% if checked %} checked="checked"{% endif %} />{{ label|trans({}, translation_domain) }}
    </label>
{% endspaceless %}
{% endblock checkbox_widget %}

{% block radio_widget %}
{% spaceless %}
{% if label is empty %}
    {% set label = name|humanize %}
{% endif %}
    <label  for="{{ id }}">
        <input type="radio" {{ block('widget_attributes') }}{% if value is defined %} value="{{ value }}"{% endif %}{% if checked %} checked="checked"{% endif %} />{{ label|trans({}, translation_domain) }}
    </label>
{% endspaceless %}
{% endblock radio_widget %}
于 2014-04-22T10:00:37.397 に答える
2

ラベルがレンダリングされると、for属性が含まれます-これはにリンクします-labelここinputドキュメントを参照してlabel、出力を提案したものに変更することは、labelとをリンクする別の方法ですinput

ラベルを入力の左側に表示する場合は、テンプレートを次のように変更する必要があります。

{% for child in form %}
   <div>
      {{ form_label(child) }}  {{ form_widget(child) }} 
   </div>
{% endfor %}

labelこれは の前にをレンダリングし、inputこれにより次の出力が作成されます

<div>
  <div>
    <label ...></label>
    <input ...>
  </div>
  <div>
    <label ...></label>
    <input ...>
  </div>
</div>

次に、CSS スタイルを適用して、インラインで表示することができます。

​div label {
    display: inline-block;
    width: 200px;
}​

デフォルトでは、CSS がないと、この HTML レイアウトlabelの前に整列しますが、 では、属性を使用して、ラベル テキストの長さに関係なく、すべてのフィールドが正しく整列されるようにすることもできます。inputinline-blockwidth

作業例はこちら

于 2012-07-17T07:26:37.857 に答える
1

フォーム入力を label タグ内に配置すると、壊れた HTML になります。

あなたの目標は何ですか?ラベルと入力をブラウザーの同じ行に表示するだけの場合は、css を使用できます。

input, label {
 display: inline;
}
于 2012-07-16T18:17:05.293 に答える
-1

そのような form_row 関数をオーバーライドすることができます (寺院のラベルに合うように変更されています / twitter ブートストラップのチェックボックス): (その例では「チェックボックス」ですが、「ラジオ」でも同じように機能すると思います)

{% extends 'form_div_layout.html.twig' %}

{% block field_row %}
{% spaceless %}
    {% if 'checkbox' in types %}
        {% if not compound %}
            {% set label_attr = label_attr|merge({'for': id}) %}
        {% endif %}
        {% if required %}
            {% set label_attr = label_attr|merge({'class': (label_attr.class|default('') ~ ' required')|trim}) %}
        {% endif %}
        {% if label is empty %}
            {% set label = name|humanize %}
        {% endif %}
        <label class="checkbox" {% for attrname, attrvalue in label_attr %} {{ attrname }}="{{ attrvalue }}"{% endfor %}>{{ label|trans({}, translation_domain) }}
           {{ block('checkbox_widget') }}
        </label>
    {% else %}
        {{ parent() }}
    {% endif %}
{% endspaceless %}
{% endblock field_row %}
于 2012-08-02T14:23:06.883 に答える