When I'm using the default data binding in WinJS, how do I bind to the "current item" instead of specifying a property to bind to. I'm think of the "." in XAML that binds to the current item.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use "this" on the right side of the binding expression:
However, if you do so, you should write a custom initializer that knows how to pull apart "this" into something that correctly turns into a string. |
|||||||||
|