JJ
Jisha Joy
Syncfusion Team
September 3, 2010 11:38 AM UTC
Hi David,
I could able to see the performance issue with GridOffice2007Filter with higher number of rows. Please create a direct trac incident mentioning about this issue to follow up.
If you want to set the GridOffice2007Filter to a particular column only, then you can use the following cide instead of wiring the filter to the entire columns.
foreach (GridColumnDescriptor col in this.gridGroupingControl1.TableDescriptor.Columns)
{
col.AllowFilter = true;
}
Grid2007ExcelFilterCellModel mode = new Grid2007ExcelFilterCellModel(this.gridGroupingControl1.TableModel);
this.gridGroupingControl1.TableModel.CellModels.Add("Filter", mode);
this.gridGroupingControl1.TableDescriptor.Columns[1].Appearance.ColumnHeaderCell.CellType = "Filter";
Regards,
Jisha