GGC wrong input type/format cell message

Hello,

Is there a way in GGC control to customize/modify the cell error message upon entering wrong input?

10x.



CellDefaultMessage_90048e73.zip

1 Reply

JJ Jisha Joy Syncfusion Team February 23, 2010 10:19 AM UTC

Hi Ruslan,

You could handle TableControlCurrentCellErrorMessage to get this done. See the code:

void gridGroupingControl1_TableControlCurrentCellErrorMessage(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCurrentCellErrorMessageEventArgs e)
{
e.Inner.Cancel = true;
MessageBox.Show("My message");
}


Regards,
Jisha

Loader.
Up arrow icon