This question is locked. New answers and comments are not allowed.
Hi
I want to use Contextmenu and CheckMode in the Jumplist.
When the user taps on checkbox then the checkbox will be activated and the context menu is not displayed.
But when the user tabs on ItemTemplate (text) this will show context menu AND the checkbox will be activated. I would like to show the context menu only.
How can I do this?
I want to use Contextmenu and CheckMode in the Jumplist.
When the user taps on checkbox then the checkbox will be activated and the context menu is not displayed.
But when the user tabs on ItemTemplate (text) this will show context menu AND the checkbox will be activated. I would like to show the context menu only.
How can I do this?
<telerikDataControls:RadJumpList ItemsSource="{Binding Appointments}" IsCheckModeActive="True" IsCheckModeEnabled="False" > <telerikDataControls:RadJumpList.ItemTemplate> <DataTemplate> <StackPanel Margin="0 -12 0 24"> <!-- ContextMenu --> <telerikPrimitives:RadContextMenu.ContextMenu> <telerikPrimitives:RadContextMenu OpenGesture="Tap" IsZoomEnabled="True" > <telerikPrimitives:RadContextMenuItem Content="Download"/> <telerikPrimitives:RadContextMenuItem Content="Open"/> </telerikPrimitives:RadContextMenu> </telerikPrimitives:RadContextMenu.ContextMenu> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding StartDateTime, StringFormat=t}" Style="{StaticResource PhoneTextTitle2Style}" /> <TextBlock Text="{Binding Worker}" Style="{StaticResource PhoneTextTitle2Style}" /> </StackPanel> </StackPanel> </DataTemplate> </telerikDataControls:RadJumpList.ItemTemplate></telerikDataControls:RadJumpList>