In knockout.js there are only 4 values for valueUpdate parameter for data binding: input, keyup, keypress and afterkeydown. But I want to update a property after key enter is pressed. Can I write custom valueUpdate event for this issue?
Something like this:
<input data-bind="value: value, valueUpdate: afterenterpress" />
Or can I achieve such behaviour another way?