Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Paging with the Telerik MVC grid when using a sproc

The documentation only shows how to bind to an IEnumerable (which uses linq to page and sort) ... but I need to go against a sproc because expressing the query I'm working on with linq is proving to be a bit slow.

Can anyone provide any guidelines or pointers on what's the best way to do this?

like image 690
Joel Martinez Avatar asked Jan 21 '23 15:01

Joel Martinez


1 Answers

You need to to use custom binding. The linked example shows how to get the current page.

like image 65
Atanas Korchev Avatar answered Mar 06 '23 19:03

Atanas Korchev