Filter bars on nested tables in GGC

How to put a filter bar on a nested table using the GGC ?

Thanks,

George.

1 Reply

AD Administrator Syncfusion Team October 11, 2006 11:57 AM UTC

Hi George,

To get the filterbar in the GridGroupingControl, You need to initialize the AllowFilter property along with ShowFilter property. Here is the code snippet.

this.groupingGrid1.GetTableDescriptor("TableName").Columns["City"].AllowFilter = true;

//For main table
this.groupingGrid1.TopLevelGroupOptions.ShowFilterBar = true;

//For all Nested table
this.gridGroupingControl1.NestedTableGroupOptions.ShowFilterBar

Kindly refer to our broswer sample ( \\windows\Grid.Grouping.Windows\Samples\FilterBar ) for more details

Best Regards,
Haneef

Loader.
Up arrow icon