We have a huge dataset about 10000 records. We don’t want to bring all data to front end.
We need to do backed pagination of data, so we need the filter condition on a column as well as the criteria so that we can send it to backend via web service and a Stored Proc will execute on the data.
Eg/-
If user does a filtering on a column called firstname with contains and value =ac”, then we need to send that value to the backend and return rows with only “ac” in the firstname.
Second, we want to limit the filter options to only “contains”.
Third, we need to know how to localize “contains” for various languages such as German, etc.