Hi Andrea,
Thanks for using Syncfusion Products.
Query 1: “is there a Grid Object for each expanded level or the Object is only the First level of grid & way to filter data with the method filtercolumn on subgrids columns”
We have Grid object for each child grid and using the child Grid object we can filter columns in Child Grid using “filterColumn” Grid method. Please refer the following code snippets.
var childObj = $("#child1_grid1").ejGrid("instance") // child1_grid1 is the id of child grid childObj.filterColumn("ShipCity", ej.FilterOperators.startsWith, "Port", "and",true) |
Query 2: “where can I find a list of the valid predicates for the method? In the documentation there in only the "equal" value”
Please refer the following documentation for details regarding Grid filtering. Under the ‘Filter Operators’ section in below documentation link you can find the list of filter operators.
http://help.syncfusion.com/ug/js/documents/filtering1.htm
Please let us know if you need any further assistance.
Regards,
Alan Sangeeth S
Hi Andrea,
Thanks for using Syncfusion Products.
Query 1: “is there a Grid Object for each expanded level or the Object is only the First level of grid & way to filter data with the method filtercolumn on subgrids columns”
We have Grid object for each child grid and using the child Grid object we can filter columns in Child Grid using “filterColumn” Grid method. Please refer the following code snippets.
var childObj = $("#child1_grid1").ejGrid("instance") // child1_grid1 is the id of child grid
childObj.filterColumn("ShipCity", ej.FilterOperators.startsWith, "Port", "and",true)
Query 2: “where can I find a list of the valid predicates for the method? In the documentation there in only the "equal" value”
Please refer the following documentation for details regarding Grid filtering. Under the ‘Filter Operators’ section in below documentation link you can find the list of filter operators.
http://help.syncfusion.com/ug/js/documents/filtering1.htm
Please let us know if you need any further assistance.
Regards,
Alan Sangeeth S
Hi Andrea,
Thanks for the update.
Query 1: “filtering does not work if the FilterSettings Type is set to Excel & Filterbar textboxes are shifted by one column”
We are able to reproduce the issues “Filter method not working with Excel Filter” & “Filterbar alignment issue in Hierarchy Grid” and we have logged defect report for this. We have created a support incident under your account to track the status of this requirement. Please log on to our support website to check for further updates
Query 2: “how can I clear all the filters applied”
We suggest you to empty the filteredColumns array of “filterSettings” Grid property and then refresh Grid Content to achieve your requiremnent. Please refer the following code snippets.
var obj = $("#Grid").ejGrid("instance"); obj.model.filterSettings.filteredColumns = []; obj.refreshContent() |
Please let us know if you have any queries.
Regards,
Alan Sangeeth S