On Sep 10, 2006, at 8:51 PM, Beau Hartshorne wrote: > > Do you know if all browsers just leave unchecked checkboxes out of > the POST?
Yes, according to the HTML specs (written in the age of dinosaurs), only controls that are successful are sent as part of the form. Successful controls have name/value pairs. Unchecked checkboxes do not have a value so they cannot be successful. Since an empty string is still a value, the only other way to signify an unchecked checkbox is to just not submit it. http://www.w3.org/TR/html4/interact/forms.html#successful-controls Don --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

