We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The bind-event directive is the databinding equivalent of inline event handlers. Instead of onclick, you use bind-event-click.
<div bind-repeater-i="#todos.length"> <input type="checkbox" bind-event-change="#todos[#i].done = thisElem.checked"> <span>{{#todos[#i].text}}</span> <input type="button" value="Delete" bind-event-click="#todos.splice(#i,1); doSomethingElse(event)"> </div>
http://jsfiddle.net/wcoczs50/1/