检查下面的两行Pageable()
代码,如何将它们组合在一条指令中?
@(Html.Kendo().Grid<Kendo.Mvc.Examples.Models.OrderViewModel>()
.Name("Grid")
...
.Pageable(p => p.PageSizes(new int[] { 10, 20, 50, 100 }).Info(true)) // 1st
.Pageable(p => p.AlwaysVisible(false)) // 2nd
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(15)
...
)
)
2条答案
按热度按时间yc0p9oo01#
lrpiutwd2#
最好的方法是使用代码括号。
))