I tried the following (as suggested here ListBox is virtual by default?):
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel/>
</ItemsPanelTemplate>
</ListView.ItemsPanel>
This did disable the virtualization but the sticky group headers no longer stick and are not clickable.
The second method below (as suggested here WPF ListView virtualization. How to disable ListView virtualization?) I do not know how to do in WP8.1WinRt; I cannot find this anywhere:
VirtualizingStackPanel.IsVirtualizing = "Standard"
So how can I disable groupedlist i.e. SemanticZoom+ListView virtualization in WP8.1 WinRT?