Hello,
i've recently installed the november 2011 release of the AjaxControlToolkit.
Afterwards the ActiveTabChanged event of the TabContainer always fires even if it has not changed.
This causes several exceptions in my application.
I would assume that Request.Params("__EVENTTARGET") should be the TabContainer when this event is triggered but it's value is (correctly) a GridView that causes the page to reload via SelectedIndexChanged event.
Request.Params("__EVENTTARGET") = "ctl00$MainContent$TabContainer1$TabDeliveryControl$SVCSDeliveryControl$GrdCharge"
Request.Params("__EVENTARGUMENT") = "Select$0"
I'm adding a js-click event in RowCreated of the GridView, if that matters:
e.Row.Attributes("onclick") = Me.Page.ClientScript.GetPostBackClientHyperlink(Me.GrdCharge, "Select$" & e.Row.RowIndex)
i've recently installed the november 2011 release of the AjaxControlToolkit.
Afterwards the ActiveTabChanged event of the TabContainer always fires even if it has not changed.
This causes several exceptions in my application.
I would assume that Request.Params("__EVENTTARGET") should be the TabContainer when this event is triggered but it's value is (correctly) a GridView that causes the page to reload via SelectedIndexChanged event.
Request.Params("__EVENTTARGET") = "ctl00$MainContent$TabContainer1$TabDeliveryControl$SVCSDeliveryControl$GrdCharge"
Request.Params("__EVENTARGUMENT") = "Select$0"
I'm adding a js-click event in RowCreated of the GridView, if that matters:
e.Row.Attributes("onclick") = Me.Page.ClientScript.GetPostBackClientHyperlink(Me.GrdCharge, "Select$" & e.Row.RowIndex)