AD
Administrator
Syncfusion Team
March 1, 2006 08:51 AM UTC
Hi Pierre,
Thanks for your interest, You can go for the CurrentCellChanged Event to get the changed text in the cell and update the database accordingly. Below is code snippet.
private void gridControl1_CurrentCellChanged(object sender, System.EventArgs e)
{
GridCurrentCell cc = this.gridControl1.CurrentCell;
if(cc.Renderer.StyleInfo.CellType == GridCellTypeName.MonthCalendar)
{
Console.WriteLine(cc.Renderer.ControlText);
// update in to database
}
}
Best Regards,
Madhan.