AD
Administrator
Syncfusion Team
February 9, 2007 11:27 PM UTC
Hi,
You can add the FilterBar by setting ShowFilterBar property to true. If you want to enable the filter on the column then you can set the AllowFilter property to true. Please add the code below in the Form_Load event, this will fetch you the desired feature.
this.gridGroupingControl1.TableDescriptor.TopLevelGroupOptions.ShowFilterBar = true;
foreach(GridColumnDescriptor gcd in this.gridGroupingControl1.TableDescriptor.Columns)
{
gcd.AllowFilter = true;
}
Thanks for your interest in Syncfusion Products.
Regards,
Haneef
AD
Administrator
Syncfusion Team
February 12, 2007 05:17 PM UTC
Thank you Haneef.
>Hi,
You can add the FilterBar by setting ShowFilterBar property to true. If you want to enable the filter on the column then you can set the AllowFilter property to true. Please add the code below in the Form_Load event, this will fetch you the desired feature.
this.gridGroupingControl1.TableDescriptor.TopLevelGroupOptions.ShowFilterBar = true;
foreach(GridColumnDescriptor gcd in this.gridGroupingControl1.TableDescriptor.Columns)
{
gcd.AllowFilter = true;
}
Thanks for your interest in Syncfusion Products.
Regards,
Haneef