Re: RadioButton Form Validation

2010-08-02 Thread Evan Ferree
models.py RESPONDANT_CHOICES = ( ('Excellent', 'Excellent'), ('Good', 'Good'), ('Poor', 'Poor'), ) class Respondant(models.Model): key = models.CharField(max_length=8, blank=True, null=True, unique=True) create_date = models.DateTimeField('date created', auto_now_add=True)

Re: RadioButton Form Validation

2010-08-02 Thread Daniel Roseman
On Aug 2, 2:46 pm, rupert wrote: > I have a form that validates all of the fields except for radio > buttons. If there is a radio button not selected, it will reset the > form. Any thoughts? Has anyone run into this before? Show some code... -- DR. -- You received this message because you are s