Completed
Last Updated: 19 Jun 2017 12:59 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 13 Apr 2017 06:11
Category: GridView
Type: Bug Report
0
FIX. RadGridView - editor is not closed when the user clicks the row header
To reproduce: please refer to the attached gif file. 

Workaround: 

public RadForm1()
{
    InitializeComponent();

    this.radGridView1.CellClick+=radGridView1_CellClick;
}

private void radGridView1_CellClick(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e)
{
    if (e.Column is Telerik.WinControls.UI.GridViewRowHeaderColumn)
    {
        this.radGridView1.CloseEditor();
    } 
}
Attached Files:
0 comments