4

我的收藏是这种类型的

<?php
namespace Gustaw\AdminBundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;

class AttributeValueType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('value')
         ->add('translations', 'a2lix_translations');
    }

    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
                'data_class' => 'Gustaw\AdminBundle\Entity\AttributeValue',
                'label' => false,
        ));
    }

    public function getName()
    {
        return 'attribute_value_type';
    }
}

这是我的表格

public function configureFormFields(FormMapper $formMapper) {
    $formMapper->with('General')
            ->add('name', null, array('required' => true))
            ->add('translations', 'a2lix_translations', array(
                    'by_reference' => false,
                    'fields' => array(
                        'name' => array()
                    )
                ))
            ->add('custom', null, array(
                    'required' => false,
            ))
            ->add('category', 'entity', array(
                    'required' => true,
                    'class' => 'GustawAdminBundle:Category',
                    'query_builder' => function (EntityRepository $er) {
                        return $er->createQueryBuilder('c')
                                ->orderBy('c.root', 'ASC')
                                ->addOrderBy('c.lft', 'ASC');
                    },))
            ->end()
            ->with('Values')
            //->add('values', 'sonata_type_collection')
            ->add('notcustomvalues', 'collection', array(
                    'type' => new AttributeValueType(),
                    'allow_add' => true,
                    'allow_delete' => true,
                    'by_reference' => false,
                    'label' => false,
                    'required' => false,
            ))
        ->end();
}

问题是在向集合中添加新元素时。当我不想为该字段设置任何标签时,每个 AttributeValueType 都会获得一个标签“__name__label__ *”,因为我将其设置为 false。

我尝试设置“prototype_name”,希望它会改变一些东西,只是让它变得更糟。

我想到的唯一想法是:

第 1 - 仅为这个集合创建没有标签的自定义主题 第 2 - 在 SonataAdminBundle 中编辑 base.js

第二个显然不是很好的选择,所以我只剩下第一个了。

问题是:我还有其他选择吗?

4

1 回答 1

1

尝试添加:'options' => array(label => 'Some Label');

像这样:

        ->add('notcustomvalues', 'collection', array(
                'type' => new AttributeValueType(),
                'allow_add' => true,
                'allow_delete' => true,
                'by_reference' => false,
                'label' => false,
                'required' => false,
                'options' => array(
                    'label' => 'Some Label'
                ),

        ))
于 2014-12-25T18:46:56.743 回答