AD
Administrator
Syncfusion Team
July 20, 2004 12:50 PM UTC
No, not really.
But if you are using a GridDataBoundGrid, then you can catch the grid.ValidateFailed event and display your own messagebox there setting e.Handled = true.
If you are using a GridControl, then you can handle CurrentCellMovedFailed, and there display a message. You would want to set grid.CurrentCell.ErrorMessage = "" to tell the grid not to diplay its message in this case.
KK
Kewalramani Kanchan
July 21, 2004 09:10 AM UTC
Thanks....will try to implement the same