AD
Administrator
Syncfusion Team
October 21, 2006 06:17 AM UTC
You can try using TableControlCurrentCellChanged to see if that gives you whatyou want.
private void gridGroupingControl1_TableControlCurrentCellChanged(object sender, GridTableControlEventArgs e)
{
GridCurrentCell cc = e.TableControl.GetNestedCurrentCell();
GridTableCellStyleInfo style = e.TableControl.GetTableViewStyleInfo(cc.RowIndex, cc.ColIndex);
Console.WriteLine("{0} changed to {1}", style.TableCellIdentity.Column.Name, cc.Renderer.ControlText);
}