Open a stock dashboard in the browser, Material Request Queue for example, and I notice some fields are not filterable..Customer ID being one of them.
I really would like to filter by this column here. Fire up application studio and make the column filterable. When I test it, I get an error when I enter criteria to filter the column by:
Toggle progressive load mode. Its the arrow pointing down at the top right of the grid. If there is no arrow sometimes the control is in the overflow menu.
right cuz using serverPaging by default then dynamically switching to client-side is hard (NOT!)
if (!hasMorePages) {
var ds = $("#grid").data("kendoGrid").dataSource;
ds.options.serverPaging = false;
ds.options.serverSorting = false;
ds.options.serverFiltering = false;
// Optional: load all data into the DataSource
ds.data(response.data);
}
…just saying it’s not hard to handle server vs client paging, sort, filter. It’s buitlin to the grid control they’re using but Kinetic is not doing it right. Meanwhile they’re adding filter features on top of a broken paging framework.