Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Angular Kendo supports server side pagination?

AngularJS Kendo had default support for server side pagination. This can be enabled using flag serverPaging: true

Now we are migrating on Angular v6 I was exploring https://www.telerik.com/kendo-angular-ui, but could not find any reference for default support for server side pagination.

The pagination template constructs menu based on total records available. It cant be manipulated using total number records alone.

If anyone have implemented server side pagination using latest kendo-ui, please share the approach

like image 590
aishwarya Avatar asked Oct 19 '25 14:10

aishwarya


1 Answers

Kendo UI for Angular data-bound components are agnostic of where their data comes from. For data operation purposes (including paging) the Grid relies on emitting events that contain all necessary information for processing the data accordingly - either on the client, or on the server.

The following examples demonstrate a Grid with server-side data operations:

EXAMPLE 1

EXAMPLE 2

like image 160
topalkata Avatar answered Oct 22 '25 04:10

topalkata