to make update panel listen to your postback changes do as follow
in script:
$(document).ready(IntializeStd);
//On UpdatePanel Refresh
var prm = Sys.WebForms.PageRequestManager.getInstance();
if (prm != null) {
prm.add_endRequest(function (sender, e) {
if (sender._postBackSettings.panelsToUpdate != null) {
IntializeStd();
}
else {
IntializeStd();
}
});
};
function IntializeStd() {
//whatever you want to do after update panel postback
//code goes here
});
}
}
}
Search Knowledge Base Articles
Update Panel Problems Fixed
Did you find this article useful?
Related Articles
-
Update Panel With Multi Select List Box
1) Update Panel Should Have The Following Attributes:ValidateRequestMode="Disabled" UpdateMode="Conditional"2)Buttons Should have onClick Event3)Regis...