im using django and i have a list of dates
list = ["2014-10-26","2010-05-05","1991-12-12" ... ] #This list may grow
I want create two comboboxes that have dates like this:
combobox1 = 2014-10-26
2010-05-05
1991-12-12
combobox2 = 2010-05-05
1991-12-12
and when you select one date in combobox1 in the combobox2 all the dates before the selected disappear, is there a way of doing this? thanks!
edit:
list = ["2014-10-26","2010-05-05","1991-12-12","2015-11-26","200-05-05","1999-12-12"]
combobox1
2014-10-26
2010-05-05
1991-12-12
2015-11-26
2000-05-05
1999-12-12
user choose 1991-12-12, in the combobox2 will be like
combobox2:
2015-11-26
2000-05-05
1999-12-12