We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Duplicate Entries in Grid

I am using a GridDataBoundGrid, with a DataTable as the DataSource. In the DataTable, i set the primary key field to prevent duplicate entries. Is there a way I can trap the duplicate key exception before it is thrown up to the user?

1 Reply

AD Administrator Syncfusion Team September 27, 2006 03:59 AM UTC

Hi Michael,

Yes. You can handle the CurrentCellErrorMessage event and display your own error message whenever the grids CurrentCell.DisplayWarningText (as a result of some kind of validation error) is called.

private void grid_CurrentCellErrorMessage(object sender, GridCurrentCellErrorMessageEventArgs e)
{
MessageBox.Show(e.Text,"CurrentCell Error",MessageBoxButtons.OKCancel,MessageBoxIcon.Error );
e.Cancel = true;
}

Let me know if you face any issues when implementing the above.

Best Regards,
Haneef

Loader.
Live Chat Icon For mobile
Up arrow icon