This question is locked. New answers and comments are not allowed.
I can't get ajax paging to work in the latest version. I don't know now the model sets the Total property automatically in the controller. But even if I set it manually, the value seems to be ignored. In my controller if I have a Total of 10, but set my paging size to 2, then the total also gets set to 2. Also setting the total in the view is ignored:
<%= Html.Telerik().Grid<TCMS.Domain.DTO.CMSWebsiteGridInfo>()
.Name("Websites")
.DataBinding(dataBinding => dataBinding
//Ajax binding
.Ajax()
//The action method which will return JSON
.Select("_GetGridData", "CMSWebsite")
)
.Pageable(a=>a.PageSize(2).Total(10))
.Sortable()
.Scrollable()
.Groupable()
.Filterable()%>
<%= Html.Telerik().Grid<TCMS.Domain.DTO.CMSWebsiteGridInfo>()
.Name("Websites")
.DataBinding(dataBinding => dataBinding
//Ajax binding
.Ajax()
//The action method which will return JSON
.Select("_GetGridData", "CMSWebsite")
)
.Pageable(a=>a.PageSize(2).Total(10))
.Sortable()
.Scrollable()
.Groupable()
.Filterable()%>