1
我是Kendo UI的新手。我有我的代碼如下。如何在Kendo UI中更改網格頁面大小的默認值?
@(Html.Kendo().Grid<ETS.Model.CompanyList>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(c => c.CompanyID).Title("Name").Template(@<text>@Html.ActionLink(@item.Name, "Company", "Companies", new { @id = @item.CompanyID }, new { @style = "color:black; text-decoration: none;" })</text>);
columns.Bound(p => p.City).Title("Billing City");
columns.Bound(p => p.SalesRep).Title("Sales Rep");
columns.Bound(p => p.Phone).Title("Company Name");
})
.Pageable(pageable => pageable
.PageSizes(true)
.ButtonCount(5)
.Refresh(true)
)
.Sortable()
.HtmlAttributes(new { style = "height: auto;" })
.BindTo(Model.Companies)
)
默認情況下,網格上顯示5個項目。有什麼辦法可以將默認值更改爲20?
你的答案讓我改變頁面的值,但它沒有將20設置爲默認值。該值在框中爲20,但只顯示5個項目。 – MSH
您是否嘗試過明確設置DataSource並使用'.DataSource(ds => ds.Server()。PageSize(20))'來查看這是否有所作爲? –
這工作完美。非常感謝!! – MSH