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
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
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