Hi, when you set the ActiveRecord of the XamDataGrid programmatically, the grid automatically scrolls that record into view. Is it possible to prevent that kind of behavior?
Regards, Stefan
Hello,
I am glad you were able to find a resolution.
Thank you for sharing this.
Sincerely,Valerie Developer Support Supervisor - XAMLInfragisticswww.infragistics.com/support
Never mind, I managed to rescroll to the same position after the programmatical selection:
double vScroll = double.NaN;
if (this.ScrollInfo.CanVerticallyScroll) vScroll = this.ScrollInfo.VerticalOffset;
// ... programmatical selection
if (this.ScrollInfo.CanVerticallyScroll) this.ScrollInfo.SetVerticalOffset(vScroll);