I have a grid with data populated from MySql database. I want to filter a column for a particular product which will be retrieved from database also. How can I achieve from C# code behind?
FilteredColumn filter = new FilteredColumn();
filter.Field = "Product.Description";
filter.Value = "Wobbler";
filter.Operator = Syncfusion.JavaScript.FilterOperatorType.Equals;
filter.Predicate = "and";
filter.MatchCase = true;
this.Grid.FilterSettings.FilteredColumns.Add(filter);
This is how I tried using a string as value and I can confirm that that string exist in the grid.