Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 troughs me the following error

The current field `contingut` is not linked to an admin. Please create one for the target entity : ``

Thanks in advance! :)

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 ) );
share|improve this question
No one has ever used Model based forms in conjunction with Sonata? I mean, does everybody ever used SOnata, only, for Entity based forms? Thanks in advanced! – user846226 Jun 8 '12 at 12:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.