Full postback triggered by CheckBox inside GridView inside UpdatePanel

1.4k Views Asked by At

I have a GridView inside of a UpdatePanel. In a template field is a CheckBox I use for marking items. Functionally, this works fine, but the CheckBox always triggers a full page postback instead of a partial postback. How do I get the CheckBox to trigger a partial postback?

<asp:GridView ID="gv_test" runat="server" AutoGenerateColumns="false">
    <Columns>
        <asp:TemplateField>
            <ItemTemplate>
                <asp:CheckBox ID="cb_View_CheckAll" runat="server" AutoPostBack="true" OnCheckedChanged="cb_View_CheckAll_CheckedChanged"/>
            </ItemTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>
2

There are 2 best solutions below

2
On

In your ScriptManager add EnablePartialRendering="true"

<asp:ScriptManager ID="ScriptManager1" runat="server" EnableViewState="False" EnablePartialRendering="true" EnableScriptGlobalization="true" > </asp:ScriptManager>

Or in Code Behind try to add AsyncPostbackTrigger

ScriptManager.GetCurrent(this).RegisterAsyncPostBackControl(gv_test); 
1
On

use trigger and scriptmanager

<asp:ScriptManager ID="script" runat="server"></asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel" runat="server">
    <ContentTemplate>

    </ContentTemplate>
    <Triggers>
        <asp:PostBackTrigger ControlID="cb_View_CheckAll" />
    </Triggers>
</asp:UpdatePanel>