Comment on Knockout: JS library for rich UIs, declarative bindings, and dependency trackingparentComments−jashkenas15yJust to be clear -- the "JSON-like binding syntax" includes arbitrary JavaScript code, right? That's how stuff like this works... <button data-bind="click: function() { allItems.sort() }, enable: allItems().length > 1"> Sort </button>−stevensandersonOP15yIt can do in cases where you find that more convenient. Whenever you prefer to move logic into your view model and just reference it, you can do so. It's intended to be flexible.
Comments
Just to be clear -- the "JSON-like binding syntax" includes arbitrary JavaScript code, right? That's how stuff like this works...
It can do in cases where you find that more convenient. Whenever you prefer to move logic into your view model and just reference it, you can do so. It's intended to be flexible.