combobox - Django: multiple dynamic comboboxes -


Does anyone have two combo boxes that are generated from a form, which depends on the first one to the other combo box. ?

Each time the user will change the selection in the combo box # 1, the options for the combo box # 2 will change to a predefined list of options.

Thanks for any help.

Cheers, Max. Use javascript to get selected option of # 1, work on the list, and accordingly

Change # 2

It's not hard with jQuery, it's hard.

Use

  $ (select '# id_of_1 option: selected'). Val ();  

To get the list of selected options and to process this list later.


Comments