Hi,
i have a grid with virtual scrolling
<ScrollSettings AllowVirtualScrolling="true" VirtualScrollMode="Continuous">
The grid is populated on the server side page.load via datatable that is filled from SQL db
The problem is when I scroll on any page greater then 1. and refresh the grid (button which refreshes the grid, also on the server side, same code as in page load)
Grid1.DataSource = db.getData("Select") - db is a function that returns datatable from sql
all the pages from 1. to the page i'm currently on disappear and are not visible, even though you can still scroll to the beginning but seeing no rows.
Page where the refresh happened and all the rest >= are correctly refreshed and visible.