This question is locked. New answers and comments are not allowed.
Hello,
I have an issue when opening a RadWindow in a scene which has a RadJumpList. If the list is long (scroll needed) and it isn't scrolled/clicked (like the first time the scene/view is opened) and i open the window it isn't visible, like it would be on another layer under the RadJumpList.
When I hit back I see the window closing, or if i try scrolling the window appears and its content scrolls.
this issue isn't present if i first scroll the content in the RadJumpList (or it hasn't that many elements to scroll) and than open the radwindow.
tried different things: focusing the window and the list, visibility settings, isfullscreen modes of the window....
code:
opening the window is done like this:
any hints/ideas?
Thanks,
Ionut
I have an issue when opening a RadWindow in a scene which has a RadJumpList. If the list is long (scroll needed) and it isn't scrolled/clicked (like the first time the scene/view is opened) and i open the window it isn't visible, like it would be on another layer under the RadJumpList.
When I hit back I see the window closing, or if i try scrolling the window appears and its content scrolls.
this issue isn't present if i first scroll the content in the RadJumpList (or it hasn't that many elements to scroll) and than open the radwindow.
tried different things: focusing the window and the list, visibility settings, isfullscreen modes of the window....
code:
<!-- these are in layoutroot -->
<telerikPrimitives:RadWindow Name="sortWindow" IsOpen="False" WindowSizeMode="FitToPlacementTarget">
<StackPanel Orientation="Horizontal" Background="Black"
[...]
</StackPanel>
</telerikPrimitives:RadWindow>
<telerikDataControls:RadJumpList Foreground="Black" EmptyContent="Add an item to begin" ItemTap="List_ItemTap" MouseLeftButtonUp="List_MouseLeftButtonUp" GroupHeaderTemplate="{StaticResource JumpListGroupHeaderTemplate}" ItemTemplate="{StaticResource ListItemTemplate}" IsAsyncBalanceEnabled="True" Margin="0" x:Name=myList" CacheMode="BitmapCache"/>opening the window is done like this:
sortWindow.PlacementTarget = LayoutRoot;
sortWindow.IsOpen = true;any hints/ideas?
Thanks,
Ionut