Login

check if form has changed (deprecated)

Author:
guettli
Posted:
February 28, 2008
Language:
Python
Version:
.96
Score:
0 (after 0 ratings)

This is deprecated. I don't use it anymore, since forms now have the attribute "has_changed".

The method form_changed() returns a boolean value. It is True if the submitted values of the bound and valid form are different than the initial values.

It works for me. Feedback welcome.

Set debug=True if you want to know what's going on.

1
# code was removed, because django has form.changed_data since a long time.

More like this

  1. Stuff by NixonDash 1 month ago
  2. Add custom fields to the built-in Group model by jmoppel 3 months, 1 week ago
  3. Month / Year SelectDateWidget based on django SelectDateWidget by pierreben 6 months, 3 weeks ago
  4. Python Django CRUD Example Tutorial by tuts_station 7 months, 1 week ago
  5. Browser-native date input field by kytta 8 months, 3 weeks ago

Comments

guettli (on September 17, 2008):

At least since django 1.0 forms have method has_changed() and an attribute "changed_data". I (the author of this snippet) will use has_changed() instead of this snippet in new code.

#

Please login first before commenting.