Hi all.
I am using server side filtering, sorting and paging jqxGrid in this link. It works very well for paging and sorting. But filtering works wrong. If I firstly select first column, and then typing 2nd column and then typing 3rd column, it works fine. But I firstly typing 3rd column, it filters first column.
I am getting this asp codes filter variables.
filterValue0 = Left((Request.QueryString("filtervalue0")),1)
filterValue1 = Request.QueryString("filtervalue1")
filterValue2 = Request.QueryString("filtervalue2")
My filtering codes:
filter: function(){
$("#jqxgrid").jqxGrid('updatebounddata', 'filter');
},
How should I take variables for working fine.
Thanks for your helps…