0
當我在GridView上使用內聯編輯並開始編輯一行時,當我在任何文本編輯器上按Enter鍵時,不是更新行,而是取消它,關閉更新並返回。捕獲gridview內嵌編輯的輸入並更新
我該如何防止這種情況發生,以及何時按Enter鍵使用jQuery提交行上的更新。
<asp:GridView ID="gvLista" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" >
<Columns>
<asp:CommandField ShowDeleteButton="true" ShowEditButton="true" >
<-- rest of BoundField with editors or other data -->
<asp:BoundField DataField="Name" />
</asp:CommandField>
</Columns>
</asp:GridView>