Tagged Questions
1
vote
1answer
1k views
sonata_type_model / symfony form one to many relationship not saving
I have a one to many relationship between accounts and users. I am using sonata admin for CRUD. As I know, it uses Symfony forms to get the job done. I tried to add a field like this:
...
0
votes
1answer
836 views
Overriding the User Admin Form
I'm trying to override the SonataUser/Admin/Model/UserAdmin's configureFormFields() because I need to remove some default fields from the admin form.
So I have copied the file ...
0
votes
1answer
648 views
Formatting choice list options in entity form type
i'm using Entity form type, choice based, in order to provide a choice list inside a Sonata Admin form. What i would like is to use a child property to display the collection of elements inside the ...
4
votes
2answers
1k views
Sonata: Fatal error: Maximum function nesting level of '100' reached.. when embedding forms
EDIT: For anyone interested on solving the same issue, that did the trick:
echo `'xdebug.max_nesting_level = 250' >> /etc/php5/conf.d/xdebug.ini`
I've created 3 Admins for 3 entities ...
0
votes
0answers
1k views
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', ...