Completed
Last Updated: 02 Jun 2016 14:29 by ADMIN
ADMIN
Dimitar
Created on: 01 Jun 2016 08:25
Category: GridView
Type: Bug Report
0
FIX. RadGridView - the RowValidating event is fired when multiple rows are deleted.
To reproduce:
Open the attached project, select two rows and delete them.

Workaround:
private void RadGridView1_RowValidating(object sender, Telerik.WinControls.UI.RowValidatingEventArgs e)
{
    if (e.RowIndex != -1)
    {
       
    }
}
0 comments