Grid filter row server side data

The Awesome Grid allows you to filter its data using editor elements inside a filter row in the header of the grid.
Filter components are textboxes by default but other editors like dropdowns, numerics, etc. and custom ones can be defined.

Filter row using server side data filtering, all the data filtering, sorting, paging is done on the server.
Clicking the grid reset button will also reset all the filters.
The Food Column filter DropdownList will load its data independently of the grid data request and because it has FilterNoReload it will do that only on the first grid load.
Country, Meals, and Chef Columns filters get their data from the Grid data result, so on each grid load (page, sort, filter change) their data will be updated, advantage being that we can limit the filter DropDownList items to only the ones present in the current grid data.



Comments