Re: Overriding save methot problem

2007-08-08 Thread Collin Grady
There is no solution, really - the links can't be added until the model is saved, so they will not be available in save() The only way you could work with m2m data is in a custom view, since then you can connect them and do whatever. --~--~-~--~~~---~--~~ You rec

Re: Overriding save methot problem

2007-08-07 Thread Chris Moffitt
I've had a similar problem in the past and have been unable to solve it. I'm not sure that there is any simple solution. -Chris --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this gr

Re: Overriding save methot problem

2007-08-07 Thread Arnaldur
Also tried grabbing the post save signal... the object that is sent with the signal is the old object, eg. the object before updates. as this is the post_save signal I tried loading the object again from database and there also it is the old version. Any thoughts about how I can get the updated

Overriding save methot problem

2007-08-07 Thread Arnaldur
Hi I'm trying to override the save method in the django admin interface, I have no problems getting values for the normal fields but when I try to access the values for multiple choice fields (many to many fields), I only get the last values, not the new values selected. This goes for both callin