JS
Jeba S
Syncfusion Team
September 27, 2007 07:19 AM UTC
Hi Raul,
Thank you for posting query to us.
There is a RowsDeleting event in a GridDataBoundGrid. You can use this to cancel the deleting of rows in a GridDataBoundGrid.
private void gridDataBoundGrid1_RowsDeleting(object sender, Grid.GridRowRangeEventArgs e)
{
if(MessageBox.Show("Delete this row", "", MessageBoxButtons.YesNo)== DialogResult.No)
e.Cancel = true;
}
Kindly let us know if you need any further assistance.
Thank you for using Syncfusion Products.
Best Regards,
Jeba.