I'm using a Telerik RadGrid with nested grids (using NestedViewTemplate
) inside an ASP.NET Web Forms page. I've enabled scrolling with AllowScroll="true"
and UseStaticHeaders="true"
, and set a fixed width for the outer container with horizontal scrolling.
The issue is that when I scroll horizontally to the right and then expand a nested row, the inner RadGrid
(in the nested view) does not align properly or its scroll resets to the left. I want both the parent and child grids to stay aligned and scroll consistently, especially when expanding/collapsing rows.
Has anyone faced a similar issue or found a good way to synchronize scrolling between parent and nested grids?