Reputation: 16086
when i gone through documentation, they listed only few of them, Where i can get the complete list of events that can be used.
Thanks in Advance!!!
Upvotes: 0
Views: 85
Reputation: 10680
The knockout documentation page states that event binding is designed to be able to work with any available Javascript events.
A list is here.
http://www.quirksmode.org/dom/events/index.html
An example is here:-
<input
data-bind="
value: linecost,
event: { change: function() { $parent.updateTotals() }"
/>
Upvotes: 2