I want to show data in grid from API. so we have created API is in .NET Core C#. For showing up data we are using AG grid in Angular.
API is created with pagination in server side. Now I want to implement sorting and searching from client side in AG Grid angular.
It's not the best approach to use client side search and sorting when you have a server side pagination.
What you will get is that you will sort or search only the data you currently have in the page, leaving out all the other rows.
Still, you can enable client side sorting, adding the sortable parameter to your column defs:
And you can enable searching using AG Grid Quick Filter: