I have a ListView template that's being used in several places and I'd like to change the layout type on the fly:
<div class="sorteditemslist" arial-label="sorted items"
data-win-control="WinJS.UI.ListView"
data-win-options="{layout: { type: WinJS.UI.ListLayout}}"
data-win-bind="winControl.itemDataSource: items.dataSource; winControl.iteminvoked: ItemInvoked;">
The default layout type is WinJS.UI.GridLayout but in certain cases I'd like to change this to a ListLayout.