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 ?
Do you have a sample that shows this?
I've tried it out, with all of the different summary locations, and it's never covering up the row i'm telling it to scroll into view.