How to scroll GridGroupingControl to the certain row?

I want to position GGC (ver. 4.2.0.37) to the certain row durong form startup.

How can I do this? And in which event have I to do this?


2 Replies

AD Administrator Syncfusion Team November 22, 2006 10:37 AM UTC

Hi Alexander,

Use the TopRowIndex property to scroll the grid at specified rowindex. Here is a code snippet to show this.

this.gridGroupingControl1.TableControl.TopRowIndex = 20;

Best Regards,
Haneef


AL Alexander November 22, 2006 11:03 AM UTC

Thank you!!!

My mistake was I try to use Record.SetCurrent() method. And the record had been set as current but still has been left not in view.

Loader.
Up arrow icon