My first post, so hi everybody. I have a model that has a checkbox field called storage_Required. The field has a custom generator defined in the validator_list parameter. The validator needs to be run whenever the form is submitted, whether the checkbox is ticked or not. Unfortunately the validator is only run when the checkbox is ticked. I have tried defining the always_test parameter to true, but this doesn't seem to work for checkboxes, although it works fine for other types of field. Relevant code is posted below:
class Order(models.Model): def stor_valid(field_data, new_data): ...... code here stor_valid.always_test = True storage_Required = models.BooleanField(null='true', validator_list = [stor_valid]) Has anyone else encountered this problem? If so is there a ticket outstanding with a patch available, or am I just missing something really stupid here? Thx in advance for any help. Simon --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---