I have started out with the navigation template and tried to put a ListView WinControl into a page (not home.html). Inserting HTML works correctly, the Javascript also executes correctly.
When trying to bind a listview using data-win-options however, I encounter the problem that the Namespace I define in the ready handler in JS doesn't exist yet, so the app throws an exception.
If I define the Namespace before the ready event, there is no exception, but the update to the "public" variable I perfom in the ready handler is not reflected in the ListView, only when I navigate back and into the page again is the ListView filled correctly with data.
The only way I found to make a ListView work for now is to directly update
document.getElementById('myListView').winControl.itemDataSource
Which really isn't the way I want to go. I'd like the binding to be in HTML.
So to sum it up, what is the correct way to bind a ListView in the Navigation Template? Or am I the only one having this problem?