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