Hi Yuriy,
Fist of all get hold of the item you wish to navigate
System.Data.DataRowView dv = myGrid.Items[myIndex];
Then set this item as the current item
myGrid.CurrentItem = dv;
Then select it
myGrid.BringItemIntoView(dv);
and you are done...
Enjoy
Abdullah Ansari
Senior Software Engineer
OutworX Solutions Private Limited
Everything is okay in the end. If its not okay, then its not the end.