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.
CollectionType. The downside of this is that you have to handle everything yourself. – likeitlikeit Sep 11 '12 at 5:26