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

My Message class has method setUsers($users) which would create new Messagethread and pass these users to thread. Message is not related to User, but Messagethread is m2m with User.

Because Message is not directly related with Users, how can i create checkboxes for that in Sonata? Ie. admin would select few users, type subject and body and upon persist, new Messagethread will be created, linked m2m with users and message created.

I have functional units tests, all works perfectly but I don't know how to do this in sonata. I tried sonata_type_collection, model etc... Can't make it work.

share|improve this question
You can do pretty much anything you want by using the regular Symfony2 CollectionType. The downside of this is that you have to handle everything yourself. – likeitlikeit Sep 11 '12 at 5:26

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.