Selected values in the child selection are lost on a parent selection change if it has less then 20 entries and is rendered as a simple DropDown menu.
Can be fixed by replacing the code in line 1592:
var selected = ($(this).attr("ows_ID") === childSelectSelected[0]) ? " selected='selected'" : "";
(not working)
with:
var selected = (thisOptionId === childSelectSelected[0]) ? " selected='selected'"
(working)
Cheers!
Can be fixed by replacing the code in line 1592:
var selected = ($(this).attr("ows_ID") === childSelectSelected[0]) ? " selected='selected'" : "";
(not working)
with:
var selected = (thisOptionId === childSelectSelected[0]) ? " selected='selected'"
(working)
Cheers!