I have a GridView
(ucLAD) in my UpdatePanel
(upnlListing). Inside my ucLAD
I have a checkbox and an action for rowClicked
:
<asp:UpdatePanel ID="upnlListing" runat="server" >
<Triggers>
<asp:AsyncPostBackTrigger ControlID="ucLAD"/>
<%-- <asp:PostBackTrigger ControlID="ucLAD"/> --%>
</Triggers>
<ContentTemplate>
<asp:Panel ID="pnlRequest" runat="server" style="margin-top:15px; height: auto;">
<ucgv:BaseGrid runat="server" ID="ucLAD"/>
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
When I use the PostBackTrigger
the action performed would be the rowClicked
same thing happen when I check the checkbox but when I use the AsyncPostBackTrigger
, I can check the checkboxes but when I click the row, the action for rowClicked
don't trigger. How can I fix this?