Changes between Initial Version and Version 1 of Ticket #13949


Ignore:
Timestamp:
Oct 13, 2010, 6:37:21 AM (14 years ago)
Author:
Gabriel Hurley
Comment:

It's true that the data for read-only fields are not available in cleaned_data. This is because read-only fields are displayed as text rather than as input elements, and thus are not posted back to the server, and so are not in the data that gets cleaned.

Mentioning this fact couldn't hurt.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13949

    • Property Triage Stage UnreviewedAccepted
  • Ticket #13949 – Description

    initial v1  
    1 if you make a model with a readonly fields, the value of that field can't be set in a clean() validator in that model's form - this isn't mentioned in the documentation anywhere as far as I can see, should be added I think
     1if you make a model with readonly fields, the value of that field can't be set in a clean() validator in that model's form - this isn't mentioned in the documentation anywhere as far as I can see, should be added I think
Back to Top