Hello,
I am trying to implement the server side filtering on the grid using spring MVC and angular.
I looked at this demo
https://www.jqwidgets.com/jquery-widgets-documentation/documentation/java-integration/grid-server-side-sorting-paging-filtering-using-jsp.htm
but I am not able to get the request parameters in the controller.
on filtering I am calling below function
onFilter = (event: any): any => {
this.datafeedGrid.updatebounddata('filter');
}
It does hit the backend, but I don’t get any filter information in the request.
how do I pass this information from UI to backend?
Thanks,
Swapnil.