Hi
I am a little confused at how I should be implementing some of the other functions in the grid.
I’ve managed to get the nested grids with dependent data working and have paging working fine.
I am now trying to implement server side filtering but I am having some trouble. (I had a look at the MVC3 exmaples but It doesn’t really help me with standard asp.net web methods).
Based on what I have read in the documentation, I should be able to do the following (it works for the sorting but not with any of the filtering)
- Set my Grid to have filterable=true.
- Add variables to my web method that gets the data for the grid for example
public static string GetOrders(int pagenum, int pagesize, int filterscount)
I based this on the fact that in the documentation it says that the filterscount parameter is sent by default to the server, and adding the pagesize and pagenum parameters worked perfectly.
However when I add that to my web method, it just completely breaks and does not even call my web method when trying to render the grid.
Any help would be appreciated.