There is a grid in a panel and the grid is recycled whenever changing tab. When two tabs have similar draggable items, the visible area is recalculated automatically by calling Reposition function to prevent that nothing is appeared caused by different number of grid items between tabs.
But the problem is appeared when the difference of item counts between two tabs is big. For example, tab A contains 100 items and current scroll value is set to show last item(100th) then clicking tab B which contains 2 items shows nothing because of the scroll value even though the Reposition function has been called manually. But it works fine when the difference is similar or same(Usually, the scroll value is changed to show new items)
I've searched similar issues here, and solutions there don't work for me. Have you got this kind of issues before?