Hi,
I have a xamgrid implementation where I select a row from the code behind. The grid has more than 500 rows and the selection never comes into view. The user has to always scrolldown and find the selected row. Is there a way to bring this selected row into view?
Thanks.
You can use the ScrollCellIntoView method:
this.xamGrid1.ScrollCellIntoView(this.xamGrid1.Rows[0].Cells["FirstColKey"]);
-SteveZ
I am trying do the same thing but when it scrolls into view its the row is covered up by the summation row. Is there a way to get around that ? Or can I get a reference to the ScrollViewer and handle it myself ?
It worked. Thanks.