theres is a way to overriding the save method for inlines form and parent in the same time?
i would like to change the value of a field when the use save the edited inlines form...
Thanks :)
|
theres is a way to overriding the save method for inlines form and parent in the same time? i would like to change the value of a field when the use save the edited inlines form... Thanks :) |
|||
|
|
|
To customize the saving of inlines, you can override the FormSet
Note that the In the case of generic inlines, the FYI, some general tip to figure these kind of things out; it's really valuable to have an IDE (or maybe vim config or Sublime setup) that allows to jump to symbol definitions really easily. The code above was figured out by jumping into the inline/formset code, and see what is happening. In the case of PyCharm, that works by holding Command (or Ctrl), and clicking on the symbol. If you're a vim user, |
||||
|
|
|
One way is to hook into your inline model's `pre_save' signal:
But I'm not sure why you can't just override the |
|||
|
|