如何控制树枝中标记的复选框顺序

时间:2015-10-26 17:22:51

标签: php symfony checkbox twig

所以当我用twig

列出一系列复选框时,我会面对这种奇怪的行为

查看新页面,它显示一切正确,并说我正在保存此实验室

img1 enter image description here

好吧,我救了实验室,现在去了编辑页面

img2 enter image description here

标记的复选框首先显示,破坏了新页面的字母顺序。

我需要编辑页面与新页面完全一样,但我不知道如何在树枝上组织这些复选框。

阻止其呈现复选框:

{% block _appbundle_laboratory_laboratoryExams_row %}
    <div class="form-group">
        {{ form_label(form) }}
        <div class="col-md-10 col-md-offset-2">
            <div class="app-checkbox-collection">
                <p>{{ 'laboratory.field_laboratory' | trans }}</p>
                {%  dump(form) %}
                {% for child in form %}
                    {% if child.exam.vars.data.type == constant('AppBundle\\Entity\\ExamLaboratory::TYPE')%}
                        {{ form_widget(child.permission, {
                            'attr' : {
                                'class' : 'exam-checkbox'
                            },
                            'label' : child.exam.vars.data.name
                        }) }}
                    {% endif %}
                {% endfor %}
                <p>{{ 'laboratory.field_image' | trans }}</p>
                {% for child in form %}
                    {% if child.exam.vars.data.type == constant('AppBundle\\Entity\\ExamImage::TYPE')%}
                        {{ form_widget(child.permission, {
                            'attr' : {
                                'class' : 'exam-checkbox'
                            },
                            'label' : child.exam.vars.data.name
                        }) }}
                    {% endif %}
                {% endfor %}
            </div>
        </div>
    </div>
{% endblock %}

我不会问葡萄牙语stackoverflow,因为没有人在那里回答symfony问题,可能很少有用户

编辑:

这是buildForms:

实验室

public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('name', null, array(
                'label' => 'laboratory.name',
                'attr' => array('class' => 'focus')
            ))                
            ->add('leader', null, array(
                'label' => 'laboratory.leader'
            ))                
            ->add('city', null, array(
                'label' => 'laboratory.city',
                'placeholder' => 'action.select_one'
            ))
            ->add('laboratoryExams', 'collection', array(
                'label' => 'laboratory.laboratoryExams',
                'type' => new LaboratoryExamType(),
                'allow_delete' => true,
                'by_reference' => false,
            ))
        ;
    }

LaboratoryExam

public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('permission', null, array(
                'label' => 'laboratoryexam.permission',
            ))
            ->add('exam', null, array(
                'label' => 'laboratoryexam.exam',
            ))
        ;
    }

3 个答案:

答案 0 :(得分:2)

您可以在构建表单时设置复选框的顺序:

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder->add('permission', 'entity', [
       'class' => 'Acme\AppBundle\Entity\Parameter',
       'multiple' => true,
       'expanded' => true,
       'query_builder'=> function(EntityRepository $repository) {
            return $repository->createQueryBuilder('exam')->orderBy('exam.title', 'ASC');
        },
    ]);
}

答案 1 :(得分:1)

我会说它与树枝无关。

这将在表单类型对象上设置,其中构造带有复选框的表单。

似乎数据以编程方式填充在表单创建上,首先选择了已选择的选项。

如果不是这种情况或您遇到问题,请使用表单类型和代码编辑您的问题,以获取复选框的数据。

答案 2 :(得分:0)

感谢您的回答,我通过在表单中​​使用ArrayCollection找到了解决方案。

$iterator = $form->get('laboratoryExams')->getData()->getIterator();
$iterator->uasort(function ($a, $b) {
    return ($a->getExam()->getName() < $b->getExam()->getName()) ? -1 : 1;
});
$form->get('laboratoryExams')->setData(new ArrayCollection(iterator_to_array($iterator)));

IMO这应该是默认情况下完成的,我相信没有人愿意让这种方式无序的复选框