I've got the following javascript code and a web page with 3 combo boxes (combo1, combo2)
function LoadCombo2(combo, eventArqs) {
var item = eventArqs.get_item();
_Combo2.set_text(
"Loading...");
The above funtion gets fired during combo1's fired OnClientSelectedIndexChanging event, which works fine when the page is initially rendered. But after a 'CancelAll' or cancel command, I get the an error on _Combo2.set_text("Loading...");
In fact, no matter what property or method I try to use for combo2, I get the following javascript error...
this.get_element() is null or not an object
Any ideas what is causing this error? I'm using IE7, RadControls for ASP.NET AJAX Q3 2009
Thanks,
weezie