The Jump list works fine on WP 8.1 Silverlight but doesn't seem to want to work with WP81 WINRT
I have a really basic listview
<ListView x:Name ="lstView"
IsGroupingEnabled="true"
HasUnevenRows="True"
GroupDisplayBinding="{Binding GroupName}"
GroupShortNameBinding="{Binding ShortName}">
<ListView.ItemTemplate>
<DataTemplate>
<TextCell Text="{Binding Name}" Detail = "{Binding Name}" />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
The data displays and everything is grouped but when I click any of the group headers it doesn't display the jumplist correctly... It looks like it tries to display the jumplist because the Listview looks disabled and I have to click the "back" button in order to close whatever is now being overlayed on top of the list view..
Works fine in 8.1 SL but doesn't seem to want to work in WP81 WINRT