Re: Trying to limit choices in my admin view

2008-01-08 Thread David Grant
So you get are getting 1000 records back in javascript, then doing the filtering in Javascript down to 100? But instead you want to have your ajax code talk to a view that will return you just the 100 records that you want? Makes sense to me. Would you mind sharing your javascript code with me? I'

Trying to limit choices in my admin view

2008-01-08 Thread Greg
Hello, I developed an AWESOME django website and everything works great except for one MAJOR problem!! I have the following models: class Collection(models.Model): name = models.CharField("Name", maxlength=200) description = models.TextField(maxlength=1000, blank=True) class Choice(mode