HA
haneefm
Syncfusion Team
July 2, 2007 03:14 PM UTC
Hi Nedu,
You can try handling the TableControlCurrentCellMoved event :
void gridGroupingControl1_TableControlCurrentCellMoved(object sender, GridTableControlCurrentCellMovedEventArgs e)
{
if (e.TableControl.CurrentCell.MoveToRowIndex != e.TableControl.CurrentCell.MoveFromRowIndex)
{
GridTableCellStyleInfo style = e.TableControl.GetViewStyleInfo(e.TableControl.CurrentCell.RowIndex, e.TableControl.CurrentCell.ColIndex) as GridTableCellStyleInfo;
if( style.TableCellIdentity.DisplayElement.Kind == DisplayElementKind.Record )
{
Console.WriteLine("Row Changed Event");
}
}
}
Best regards,
Haneef
CH
Chinedu
July 2, 2007 04:26 PM UTC
Thanks Haneef.
Thank you very much for the prompt reply