AD
Administrator
Syncfusion Team
September 16, 2005 12:20 PM UTC
Hi Kjetil,
Try the following snippet in the button handler.
GridRangeInfo r= this.gridGroupingControl1.TableModel.Selections.Ranges[0];
int row=r.Top;
int col=r.Left;
gridGroupingControl1.TableModel.Selections.Clear();
this.gridGroupingControl1.Focus();
this.gridGroupingControl1.TableControl.CurrentCell.MoveTo(row,col);
Regards,
Leo.