1
我遇到了我的數據表格(http://www.datatables.net/manual/styling/bootstrap)gridview問題。當按下編輯按鈕時,gridview進入editmode。但是編輯的行成爲gridview中最後一行混淆了用戶。任何人都知道如何解決此問題?使用datatable bootstrap更新asp.net gridview中的行時。 editrow成爲最後一行
我的GridView:
<asp:GridView
ID="gv_cats"
AutoGenerateColumns="false"
runat="server"
DataKeyNames="ID"
CssClass="gvv_cats table table-striped table-bordered"
ShowHeaderWhenEmpty="true"
OnRowDeleting="gv_cats_RowDeleting"
OnRowEditing="gv_cats_RowEditing"
OnRowCancelingEdit="gv_cats_RowCancelingEdit">
<Columns>
<asp:CommandField ShowDeleteButton="true" ShowEditButton="true" />
.......
</Columns>
</asp:GridView>
數據表,jQuery的構造函數:
var table = $(".gvv_cats").prepend($("<thead></thead>").append($(this).find("tr:first"))).dataTable({
pagingType: 'full_numbers',
stateSave: true
});
new $.fn.dataTable.FixedHeader(table);
編輯:我也是開放的變通。我在想:gv_cats_RowEditing轉到gridview的最後一頁。但是,如何將代碼傳遞到數據表以轉到最後一頁?
不是100%的解決方案,因爲現在我的訂購不起作用。但它解決了這個問題。謝謝。 – 2015-03-30 05:30:19