User Profile & Activity

Member
Posted: February 4, 2010 10:15 AM

We had the same issue, any time a webcombo was inside an update panel after and async post the style would be lost and the control would no longer function. Our solution was to make a javascript call after an async postback in the EndRequestHandler event to re initialize the webcombo.

try {

ISControl_InitializeAtlas(webComboClientID);

if (document.getElementById(webComboClientID)) {

document.getElementById(webComboClientID).dispose = function() {

{

ISControl_Dispose(webComboClientID);

}

}

}

ISGetObject(webComboClientID).DoResize();

}

function() {

{

ISControl_Dispose(webComboClientID);

}

}

}

ISGetObject(webComboClientID).DoResize();

}

catch(e){}
All times are GMT -5. The time now is 1:49 AM.
Previous Next