Declined
Last Updated: 11 Dec 2015 16:27 by ADMIN
ADMIN
Dimitar
Created on: 19 Nov 2015 14:17
Category: GridView
Type: Feature Request
0
ADD. RadGridView - there should should be a property which allows all items showing in the excel-like filtering drop down.
For now you can manually add the columns to the ExcelFilteredColumns collection when the filters are added in code:

FilterDescriptor fd = new FilterDescriptor("Value", Telerik.WinControls.Data.FilterOperator.IsEqualTo, "B");
fd.IsFilterEditor = true;
radGridView1.FilterDescriptors.Add(fd);

this.radGridView1.MasterTemplate.ExcelFilteredColumns.Add( this.radGridView1.Columns[0] );   
1 comment
ADMIN
Stefan
Posted on: 11 Dec 2015 09:53
One should use the ExcelFilteredColumns property for the purpose.