Hi
i found it difficult to render a flip view control when i am using WinJS.UI.ListView.
We Have a WinJS.UI.ListView that render items , and want that one of the items will render as a flip view control.
we create a tepmlate for the flip view but can't actually "force" specific item to render as flip view
this is our render for the list control
function renderItem(itemPromise) {
...........
var template = document.querySelector('#' + type.template).winControl;
}
return template.renderItem(itemPromise);
}
the question is how can i determine that one of the item will render as flip view control?
thanks a lot