Re: SelectMultiple with Static Choices in admin Interface

2009-07-13 Thread Ian Clelland
On Jul 13, 10:03 am, itodd wrote: > Greetings, > > I'm trying to use a SelectMultiple with a set of static choices. I'm > experiencing odd behavior when the number of choices exceeds 10. For > example, take the following Model and ModelForm: > > class Project(models.Model):

SelectMultiple with Static Choices in admin Interface

2009-07-13 Thread itodd
Greetings, I'm trying to use a SelectMultiple with a set of static choices. I'm experiencing odd behavior when the number of choices exceeds 10. For example, take the following Model and ModelForm: class Project(models.Model): RECIPIENTS = ( (1,'Brad'), (2,'Fred'),