Hi James,
Did you set itemsReorderable to true in the list view?
<div id="listView"
class="win-selectionstylefilled"
data-win-control="WinJS.UI.ListView"
data-win-options="{
itemDataSource: myData.dataSource,
itemTemplate: regularListIconTextTemplate,
selectionMode: 'none',
tapBehavior: 'none',
swipeBehavior: 'none',
itemsReorderable: 'true',
layout: { type: WinJS.UI.GridLayout }
}"
></div>
When itemsReorderable not set, the interactive inputs gets focus with a single click of mouse. But when itemsReorderable is set the inputs doesn't gets the focus with a single mouse click(which is what I want). It requires doubleclick to get focus,
which is not the expected behaviour.