Hi Sunitha,
If you want to avoid your user entering the text in MonthCalender cell, then you can try using CurrentCellValidateString. This event is hit keystroke by keystroke and you can test e.Inner.Text to see if it is something you want to accept.
Below is the code snippet:
private void gridGroupingControl1_TableControlCurrentCellValidateString(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCurrentCellValidateStringEventArgs e)
{
GridCurrentCell cc = this.gridGroupingControl1.TableControl.CurrentCell;
if(cc.RowIndex >=4 && cc.ColIndex == 3)
{
try
{
DateTime dt = DateTime.Parse(e.Inner.Text);
}
catch
{
e.Inner.Cancel = true;
}
}
}
Please refer to the below KB article for more details on Validation of a cell.
http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=340Kindly let us know if you need any further assistance.
Regards,
Jeba.