Completed
Last Updated: 25 Jan 2016 13:24 by ADMIN
ADMIN
Hristo
Created on: 14 Jan 2016 09:20
Category: GridView
Type: Bug Report
0
FIX. RadGridView - slow performance when selecting multiple cells
Workaround:

private void grid_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.ShiftKey)
    {
        this.grid.MasterTemplate.ListSource.BeginUpdate();
    }
}

private void grid_KeyUp(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.ShiftKey)
    {
        this.grid.MasterTemplate.ListSource.EndUpdate();
    }
}
0 comments