disable Delete a row when delete key is pressed

Hi,

I am using a DGBG, and I would like to disable the feature of deleting a row, when the delete key is pressed.

thanking you in advance,

--Raul

1 Reply

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.

Loader.
Up arrow icon