This is a migrated thread and some comments may be shown as answers.

RadJumpList in a RadWindow

2 Answers 83 Views
Window
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Matthew
Top achievements
Rank 1
Matthew asked on 09 Dec 2011, 12:57 AM
Below is the xaml, is the GroupHeaders and StickyHeaders are not showing, but the items in the list are, this worked in a page, but I decided to make the list just a popup due to navigation...  

<telerikPrimitives:RadWindow  IsFullScreen="True" Background="{StaticResource PhoneBackgroundBrush}">
            <telerikData:RadJumpList IsStickyHeaderEnabled="True" ItemsSource="{Binding Items}">
                <telerikData:RadJumpList.StickyHeaderTemplate>
                    <DataTemplate>
                        <Border HorizontalAlignment="Stretch" Background="{StaticResource PhoneBackgroundBrush}">
                            <Border Width="64" Height="64" Margin="12,0,0,0" HorizontalAlignment="Left" Background="{StaticResource PhoneAccentBrush}">
                                <TextBlock Margin="6" HorizontalAlignment="Left" VerticalAlignment="Bottom" Style="{StaticResource PhoneTextExtraLargeStyle}" Text="{Binding}" />
                            </Border>
                        </Border>
                    </DataTemplate>
                </telerikData:RadJumpList.StickyHeaderTemplate>
                <telerikData:RadJumpList.GroupHeaderTemplate>
                    <DataTemplate>
                        <Border Width="64" Height="64" Margin="12,0,0,0" HorizontalAlignment="Left" Background="{StaticResource PhoneAccentBrush}">
                            <TextBlock Margin="6" HorizontalAlignment="Left" VerticalAlignment="Bottom" Style="{StaticResource PhoneTextExtraLargeStyle}" Text="{Binding}" />
                        </Border>
                    </DataTemplate>
                </telerikData:RadJumpList.GroupHeaderTemplate>
                <telerikData:RadJumpList.ItemTemplate>
                    <DataTemplate>
                        <Grid Margin="0,0,0,12">
                            <TextBlock Style="{StaticResource PhoneTextExtraLargeStyle}" Text="{Binding}" />
                        </Grid>
                    </DataTemplate>
                </telerikData:RadJumpList.ItemTemplate>
            </telerikData:RadJumpList>
        </telerikPrimitives:RadWindow>

2 Answers, 1 is accepted

Sort by
0
Deyan
Telerik team
answered on 12 Dec 2011, 08:58 AM
Hi Matthew,

Thanks for contacting us.

We have tried to reproduce the undesired behavior you are reporting but did not succeed. We therefore would like to ask you to prepare a sample project that we can use to reproduce it and send it to us by opening a new support ticket. In this way we will be able to directly take a look at your code and see what goes wrong.

Thanks for your time.

Kind regards,
Deyan
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Matthew
Top achievements
Rank 1
answered on 12 Dec 2011, 10:56 PM
I figured this out a few days ago. Thanks for the reply though! :-)
Tags
Window
Asked by
Matthew
Top achievements
Rank 1
Answers by
Deyan
Telerik team
Matthew
Top achievements
Rank 1
Share this question
or