HI
I found there have a problem about Grid.Pageable() and DataSource.PageSize().
If you set Grid.Pageable(false) and Grid becomes unpageable(this is OK)
but DataSource.PageSize(m) setting still applied (Grid still show m records at once, not all records).
I think when Grid.Pageable(false) and Grid should show all records absolutely, RIGHT ?
@(Html.Kendo().Grid(Model.MyList1)
.Name("MyList1Grid")
.Pageable(pageable => pageable.Enabled(false))
...
.DataSource(dataSource =>
{
dataSource.Ajax()
.PageSize(3)
.ServerOperation(false)
.Model(model => model.Id(m => m.UniqueID))
})
...;
*Telerik DevCraft UI for ASP.NET MVC R2 2017 SP1
Best regards
Chris