Re: Chained select boxes--what's my best strategy?

2010-04-02 Thread Daniel
Yes, select box 1 presents a list of choices. Based on the selected choice, a select box 2 shows up. Select box 2's choices are foreign keys of the choice the user selected in select box 1. This process needs to loop until the user is done. So the user could run through select box 1 --> select

Re: Chained select boxes--what's my best strategy?

2010-04-02 Thread Thierry Chich
If your selectbox are corresponding to foreignkey in yours models, it coult be very simple. It could be a sucession of urls , generic views and simple templates. Other thing: there is a lot of jquery plugins that don't need Ajax to work. Lot of them could use elements already in the DOM.

Chained select boxes--what's my best strategy?

2010-04-01 Thread Daniel
Hi, I'm basically trying to implement a series of chained select boxes, i.e. If you select a vehicle = car, then it'll popup another select box of brands. Select Honda and then it'll pop up another select box of prices, for example. The thing is, these select boxes should be populated