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

GDBG : DataError

Hi,
I seek an event “DataError” like that of DataGridView with GDBG

THanks

1 Reply

AD Administrator Syncfusion Team December 5, 2006 11:26 AM UTC

Hi,

In the Essential Studio 4.2, We have newly added a CurrentCellErrorMessage event which you can handle and display your own custom message box whenever the grids CurrentCell.DisplayWarningText (as a result of some kind of validation error) is called. Please refer to the attached sample for implementation.

Sample: GDBGErrorMessage.zip

private void gridDataBoundGrid1_CurrentCellErrorMessage(object sender, Syncfusion.Windows.Forms.Grid.GridCurrentCellErrorMessageEventArgs e)
{
MessageBox.Show(e.Text,"NewError",MessageBoxButtons.OKCancel );
e.Cancel = true;
}

Best Regards,
Haneef

Loader.
Live Chat Icon For mobile
Up arrow icon