I am trying to pass selected value from dropdownlist(GameCode) to another dropdown(GameCode2).
It is passing the value but it is not showing the value in the another dropdown.
How can I show it?
function gameDropDownOnChange(e) {
var game= $('#GameCode').data("kendoDropDownList").value();
$('#GameCode2').val(game).change();
}
Hi Kate,
I am not sure if the selected value from the first DropDownList should be selected or added to the second DropDownList.
If the item is available and should be selected, use the "select" method:
If the item is not available in the second DropDownList, add it to its dataSource:
I hope this information helps. Let me know if further assistance is needed.
Kind Regards,
Anton Mironov