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!
Comments: I'm not sure I understand the exact situation. (Generally it's best to post in the discussions first so that we can hash out what the issue is first, in any case.) Can you post more details in the discussions along with the code you are using? Thanks, M.
Comments: I'm not sure I understand the exact situation. (Generally it's best to post in the discussions first so that we can hash out what the issue is first, in any case.) Can you post more details in the discussions along with the code you are using? Thanks, M.