Hi,
How can I get the checked items list ?
I would like to display the checked items in JavaScript alert.
I tried some codes but it doesn't work for me:
var oDevices = $("#<%=DevicesDropDownList.ClientID%>").data("ejDropDownList");
alert(oDevices.getChecked()); //failed
alert(oDevices.getCheckedItems()); //failed
for (var i = 0; i < oDevices .model.selectedIndices.length; i++) {
alert(oDevices.model.selectedIndices[i].checked); //failed
}
Thanks for help.
Tomer