Posted 3 February 2026, 12:37 pm EST - Updated 3 February 2026, 12:50 pm EST
Hi Wijmo Team,
I am using Wijmo FlexGrid in Angular and I want to implement server-side operations instead of client-side processing.
Requirement:
I have separate server APIs and I want the grid to behave like:
1.Server-side Pagination / Lazy Loading
Load only the first 50 records initially
Load the next batch of 50 on scroll(virtual/lazy loading)
2.Server-side Filtering
When user applies filters using wj-flex-grid-filter, I want filter parameters to be sent to server (API)
Server should return filtered results + total count (if needed)
3.Server-side Sorting
When user clicks column headers to sort, I want sorting parameters (field + asc/desc) to be sent to server
Server returns sorted results
Questions
1 What is the recommended Wijmo approach for server-side paging/lazy loading in FlexGrid((load next 50 when scrolling near bottom)?
2.How can I intercept filter changes from wj-flex-grid-filter so I can call my server API with filter payload?
3. How can I handle server-side sorting in FlexGrid?
4. Could you please share a sample Angular example
-Request format: skip/take (or page + pageSize), filters, sorting
-Response format including items and optionally totalCount
-Wiring it to wj-flex-grid so user actions trigger API calls
Current grid setup
<wj-flex-grid
[itemsSource]="dataCollection"
[selectionMode]="'None'"
headersVisibility="Column">
<wj-flex-grid-filter [filterColumns]="filterableColumns"></wj-flex-grid-filter>
<wj-flex-grid-column [binding]="'username'" [width]="170" [isReadOnly]="true"></wj-flex-grid-column>
<wj-flex-grid-column [binding]="'firstName'" [width]="150"></wj-flex-grid-column>
<wj-flex-grid-column [binding]="'lastName'" [width]="150"></wj-flex-grid-column>
<wj-flex-grid-column [binding]="'status'" [width]="100"></wj-flex-grid-column>
<wj-flex-grid-column [binding]="'tags'" [width]="240" [allowSorting]="false"></wj-flex-grid-column>
<wj-flex-grid-column [binding]="'categories'" [width]="240" [allowSorting]="false"></wj-flex-grid-column>
<wj-flex-grid-column [binding]="'isExternal'" [width]="100" [allowSorting]="false"></wj-flex-grid-column>
<wj-flex-grid-column [binding]="'externalUrl'" [width]="'*'" [allowSorting]="false"></wj-flex-grid-column>
</wj-flex-grid>
Server API expectation (example)
I am aiming like below API:
API1 (Pagination / Lazy Load)
GET /api/users? start=0&count=50 - first request , after scroll in next request GET /api/users? start=50&count=50
API2 (Filter)
GET /api/users?skip=0&take=50&filters=…
API3 (Sort)
GET /api/users?skip=0&take=50&sortBy=name&sortDir=asc
Or a combined API that accepts all parameters together.
If you can provide a recommended pattern and a working sample (or reference link), it would be really helpful.
Note: We want all three operations (pagination/lazy loading, filtering, sorting) handled on server because the dataset is large.
