I'm defining page with some vars and methods. Then I wanna use it in html markup (for example data-win-bind="textContent: myPage.variable). How can I access page variables in html markup?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
In the JavaScript code behind your page, say default.js, you'd include your ViewModel for the data binding, something like:
Then in when the page is activated (in default.js), you'll need to initialize the bindings with a call like
There's quite a bit more functionality available though, so this is just a simplistic one-way binding case that should get you started. For more info, check out the Quickstart: binding data and styles. |
|||
|
|
|
You have to use javascript here's the skeleton:
|
|||
|
|