I am creating a user control that I am trying to use the Multiple Combobox with the ClientSide OnClientSelectedIndexChanging event. When I use the control, something doesn't appear to be working write. If I use the code a web form the javascript works fine. Here is what I have...
var deptCombo = $find("cboDepartment");
var item = eventArgs.get_item();
alert(item.get_text());
deptCombo.set_text(
"Loading...");
Thanks in advance for your help.
Tommy