在我的劍道UI格,我的頁面大小屬性設置三 - 每頁(3):在ASP.NET MVC劍道UI電網分頁問題
@(Html.Kendo().Grid<Kendo.Mvc.Examples.Models.Discount>()
.Name("discountgrid")
.Columns(c=>
{
c.Bound(d => d.Id);
c.Bound(d => d.Category);
c.Bound(d => d.Percentage);
c.Bound(d => d.Merchandise);
c.Command(cm => { cm.Edit(); cm.Destroy(); });
})
.Pageable()
.ToolBar(toolbar => toolbar.Create())
.Editable(editable => editable.Mode(GridEditMode.InCell))
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(3)
.ServerOperation(false)
.Model(model => model.Id(d => d.Id))
.Create(update => update.Action("EditingInline_Create", "Grid"))
.Update(update => update.Action("EditingInline_Update", "Grid"))
.Destroy(update => update.Action("EditingInline_Destroy", "Grid"))
)
)
加入前三排後,當我插入第四條記錄,第一條記錄消失(如預期的那樣) - 但我沒有看到選項轉到網格頁腳的第二頁(第2頁)。
這是爲什麼?我錯過了什麼?
代碼似乎確定。您檢索了多少條記錄?你檢查了[演示](http://demos.kendoui.com/web/grid/index.html)嗎? – Nilesh
@Nilesh我不知道有多少記錄會回來 - 我確實檢查過這些演示,但是我無法讓它工作。 –
你看到底部的頁面導航欄嗎?你嘗試重新加載網格嗎?嘗試明確地做!我認爲你可以添加一個刷新選項。你還需要指定'Read(read => read.Action(「ActionName」))'。 – Nilesh