Good morning,
I'm trying to populating a set of drop-down menus, "Chain-Select" menu. A typical chain-select menu would consist of selecting a choice in the first drop-down and then the second drop-down will be available with choices; choosing something from the second drop-down would trigger choices of the third drop-down and so on.
What we are trying to accomplish here is that the first drop-down should have a default choice selected, then the second should have another default choice selected (I know, it seems to defeat the purpose, but we have a reason).
The problem is that we can't go past the first choice before the chain gets halted. In other words, we would like a "Fixed" set of values all the way to the end of the chain, then it's up to the user to change it.
Any idea on how to set default values across the chain. I tried setting the default values as:
$("#Field1").val("something1"); $("#Field2").val("something2"); $("#Field3").val("something3"); $("#Field4").val("something4"); $("#Field5").val("something5");
but it just assigns the first choice "something1" and the rest are left blank.