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.
Up arrow icon