Unplanned
Last Updated: 26 Apr 2018 13:39 by ADMIN
ADMIN
Dilyan Traykov
Created on: 26 Apr 2018 12:59
Category: GridView
Type: Bug Report
0
GridView: ScrollIntoViewAsync does not bring an item into view in a grouped scenario when the item is below the viewport
To work this around set the GroupRenderMode property of RadGridView to Flat.

When GroupRenderMode is set to Nested the issue can be overcome by calling the BringIntoView method on the row returned in the ScrollIntoViewAsync method's callback:
gridView.ScrollIndexIntoViewAsync(index,
  new Action<FrameworkElement>((f) =>
  {
      f.BringIntoView();
  }));
0 comments