Completed
Last Updated: 16 Oct 2015 07:04 by ADMIN
ADMIN
Dimitar
Created on: 21 Jul 2015 14:26
Category: GridView
Type: Bug Report
0
FIX. RadGridView - CellClick event is fired when one releases the mouse over the scroll bar in a hierarchy template
To reproduce:
- Create a hierarchy  and set the UseScrollbarsInHierarchy property to true.
- Scroll by pressing the thumb in the child template.
-  The CellClick event is fired when the mouse is released.

Workaround:
void radGridView1_CellClick(object sender, GridViewCellEventArgs e)
{
    if (e.Column != null)
    {
        Console.WriteLine("CellClick");
    }
}
0 comments