Hi Murad,
Thanks for contacting Syncfusion Support.
We have analyzed your query. In GridTreeControl you can programmatically scroll the GridTreeControl to particular node like the below code example,
Code Example [C#]
|
{ InitializeComponent(); this.treeGrid.Loaded += treeGrid_Loaded; }
void treeGrid_Loaded(object sender, RoutedEventArgs e) { treeGrid.InternalGrid.ScrollInView(new RowColumnIndex(30, 3)); } |
|
Methods |
|
|
|
|
|
|
|
|
Regards,
Sowndaiyan
|
|