Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
135
Focus and scroll on a Record
posted

Hello,

 I was wondering how do I scroll to a selected record? I can currently select the record by doing the following

grid.SelectedItems.Records[0].IsActive = true;

grid.SelectedItems.Records[0].IsSelected = true;

 but, how do I scroll to it?

Thanks!!

Parents
No Data
Reply
  • 8576
    Offline posted

    Hi mw -

    The way to scroll a record into view is:

    grid.BringRecordIntoView(myRecord);

    Joe Modica

Children