How add collection into collection form in symfony 3 - symfony

I have 3 form types in symfony 3
PanneauType which is the parent of all next collections
->add('faces', CollectionType::class, array(
'entry_type' => FacePanneauType::class,
'entry_options' => array('label' => false),
'allow_add' => true,
'allow_delete' => true,
))
FaceType
->add('agendas', CollectionType::class, array(
'entry_type' => AgendaType::class,
'entry_options' => array('label' => false),
'allow_add' => true,
'allow_delete' => true,
'attr' =>['class'=>'agendas']
))
AgendaType
->add('debut', null, ['attr'=>['class'=>'form-control']])
->add('fin', null, ['attr'=>['class'=>'form-control']])
How can I generate my form in the twig add and remove the agendaType?

That's what you are looking for:
https://symfony.com/doc/current/form/form_collections.html
You are going to need some Javascript for this :)

Related

Set the default data in ChoiceType with radio buttons

Is it possible to set de default radio choice option to business? I'm using the following symfony code but none of the radio options are selected default in the form.
->add('business', 'choice', array(
'translation_domain' => 'messages',
'choices' => array('business' => true, 'private' => false),
'expanded' => true,
'multiple' => false,
'choices_as_values' => true,
))
You can pass default data to your form:
// Inside a controller
$this->createForm(YourFormType::class, [
'business' => true, // Default value for your business field
]);
You can also set the default value in the form builder:
->add('business', 'choice', array(
'translation_domain' => 'messages',
'choices' => array('business' => true, 'private' => false),
'expanded' => true,
'multiple' => false,
'choices_as_values' => true,
'data' => true, // Default value
))

sonata_type_collection clear input file when adding a row

in advance, sorry for my poor english.
I have a problem with the "sonata_type_collection" form type.
I got two entity, the first, "proposition" has a one-to-many relationship with "Image". "Image" has a many-to-one relationship with "proposition". Everything seems to work well, the ImageAdmin is nested in PropositionAdmin.
But when i add a row in the PropositionAdmin, without persisting object, it clear the input="file" field. I read that its the correct behavior since Sonata reload the form when adding a row. So i was wondering if there was a way to avoid that behavior.
Thanks in advance.
Here is my code :
protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
->add('title')
->add('axe')
->add('username')
->add('password','repeated', array('type' => 'text','options' => array('translation_domain' => 'FOSUserBundle'),
'first_options' => array('label' => 'form.password'),
'second_options' => array('label' => 'form.password_confirmation'),
'invalid_message' => 'fos_user.password.mismatch'))
->add('imgs', 'sonata_type_collection', array(
'by_reference' => false
), array(
'edit' => 'inline',
'allow_delete' => true
))
;
}
I endend up by using a Symfony2 form.
I generated the formtype with Command here
Then, in the parent entity's bundle:
>add('imgs', 'collection', array(
'label' => 'Créations',
'by_reference' => false ,
'type' => new \propalBundle\Form\ImageType(),
'allow_delete' => true,
'allow_add' => true
), array(
'edit' => 'standard',
'inline' => 'table',
))
It can require some tweaks but seems to work.
When the proposition has relation oneToMany with image you should add multiple attribute in the configuration of imgs filed in PropositionAdmin class
->add('imgs', 'sonata_type_collection', array(
'by_reference' => false
'multiple' => true
), array(
'edit' => 'inline',
'allow_delete' => true
));

Access translated property of collection in form

I have a form with a collection. My form "PageType" with a collection look like this.
$builder->add('sections', 'collection', array(
'type' => new SectionType($this->securityContext, $this->entityManager) ,
'allow_add' => true,
'allow_delete' => true,
'label' => false,
'prototype' => true,
'prototype_name' => '__sectionPrototype__',
'options' => array(
'label' => false,
)
And my second form which represents the collection "SectionType" look like this.
->add('translations', 'a2lix_translations', array(
'fields' => array(
'title' => array(
'field_type' => 'text',
'label' => 'title',
'attr' => array('class' => 'rte sectionTitle')
),
'text' => array(
'field_type' => 'textarea',
'label' => 'hintText',
'attr' => array('class' => 'rte sectionDescription')
)
)
))
How can i access from twig the translations fields?
I think that is not possible. Maybe somebody could correct me if I'm wrong.
fields is an option item for a2lix_translations. If you would have Form object you might be able to do that, but in fact, you have FormView which represents built form.
Alternatively, you could pass that array via standard return from controller and into your twig. Does that sound good?

Symfony2 collection and related choice field not (yet) managed

I've got a form with a collection field "options" and a choice field "defaultOption". My goal is to enable the user to create a new entity, add some options and select a default option from the list of option he/she just added before saving the entire thing.
Here's part of the form that shows both fields:
$form->add('options', 'collection', array(
'type' => new CustomFieldOptionType(),
'label' => 'custom.field.options',
'allow_add' => true,
'allow_delete' => true,
'options' => array(
'label_render' => false,
'widget_control_group' => false,
),
'by_reference' => false,
'attr' => array('class' => 'options')
));
$form->add('defaultOption', 'entity', array(
'label' => 'custom.field.default',
'class' => 'XFDOBundle:CustomFieldOption',
'choices' => $field->getOptions(),
'property' => 'name',
'required' => false,
'empty_value' => 'custom.field.default.empty',
'attr' => array('class' => 'default-option')
));
I've tried several things with jquery and form event listeners to (re)populate the "defaultOption" field with the new (not-yet-persisted) options, but that resulted in to nothing or "Entities passed to the choice field must be managed" exceptions.
Any idea how I can get this working?

using sonata_type_collection against a custom form type instead of a property/relationship with another entity

is it possible to use sonata_type_collection against a custom form type instead of a property/relationship with another entity?
Something like this:
$formMapper->add('foo', 'sonata_type_collection',
array('type' => new \myVendor\myBundleBundle\Form\Type\BlockType()
));
Which throws me the following error
The current field `contingut` is not linked to an admin. Please create one for the target entity : ``
EDIT:
Something like this did the trick:
$formMapper->add('contingut', 'collection', array(
'type' => new \myVendor\myBundleBundle\Form\Type\Block1Type(),
'allow_add' => true,
'allow_delete' => true,
'by_reference' => false
));
Instead of a custom type in your example, you can also use a native entity type.
$formMapper->add('cars',
'collection',
array(
'type' => 'entity',
'allow_add' => true,
'allow_delete' => true,
'by_reference' => false,
'label' => false,
'options' => array(
'class' => 'YourBundle:Car',
'property' => 'name',
'label' => false
)
)
)

Resources