Re: manipulator.save(data) doesn't return a object from database

2006-06-08 Thread Viktor
OK, thanks. Ivan Sagalaev wrote: > editable=False means exactly that manipulator won't touch this field, > this is why it's not updated with the value from data. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "D

Re: manipulator.save(data) doesn't return a object from database

2006-06-08 Thread Ivan Sagalaev
Viktor wrote: >blabla = models.IntegerField(default=0, editable=False) > > editable=False means exactly that manipulator won't touch this field, this is why it's not updated with the value from data. --~--~-~--~~~---~--~~ You received this message because you a

manipulator.save(data) doesn't return a object from database

2006-06-08 Thread Viktor
I don't know if this is a bug, so basicly this is a question not a bug report :) I have a model which has the next field: blabla = models.IntegerField(default=0, editable=False) Value for this field is calculated in the save(self) method of the model. But when I do: myObject = manipu