Completed
Last Updated: 04 Jan 2017 19:13 by ADMIN
ADMIN
Dimitar
Created on: 26 Dec 2016 08:29
Category: VirtualGrid
Type: Bug Report
3
FIX. RadVirtualGrid - once a custom column is added it cannot be removed from the grid.
To reproduce:
- Open the attached project.
- Unselect Column3 from the list.

Workaround:
this.radVirtualGrid1.MasterViewInfo.CustomColumns.RemoveAt(0);

foreach (VirtualGridRowElement rowElement in
    this.radVirtualGrid1.VirtualGridElement.TableElement.GetDescendants(delegate(RadElement x) { return x is VirtualGridRowElement; }, TreeTraversalMode.BreadthFirst))
{
    rowElement.CellContainer.Children.Clear();
}

Attached Files:
0 comments