Hi all..
I got 2 update panels in one page. After a request I want to check which update panel(s) got updated. I've read sender._postBackSettings.panelID
should be good for this :)
However, whenever I get a postback in a non-IE browser, the panelID just returns null? It works very fine in IE...
Here's a codesnippet:
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(
function(sender, args) {
var postBackControls = sender._postBackSettings.panelID.split("|");
........
});
I got 2 updatepanels, both with conditional updatemodes:
<asp:UpdatePanel ID="updScheduleTemplate" runat="server"
UpdateMode="Conditional">
<ContentTemplate>
.........
and
<asp:UpdatePanel ID="updSpecialDays" runat="server"
OnLoad="updSpecialDays_OnLoad" UpdateMode="Conditional">
<ContentTemplate>
..........
Any help would be highly appreciated, and I'm open for alternative solutions which doesn't involve sender._postBackSettings.panelID
Thanks in advance :)