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>
In your ScriptManager add
EnablePartialRendering="true"
Or in Code Behind try to add AsyncPostbackTrigger