I have a 'Save' button on my form that has knockout enable binding. I added valueUpdate: 'keypress' to my knockout binding expression hoping for save button to become enabled on keypress. I have a simple input textbox with value knockout binding. Instead, page still requiring user to click away for save button to become enabled. HTML below. when user types in input, canSave becomes true enabling save button.
<button data-bind="click: save, enable: canSave, valueUpdate: 'keypress'">Save</button>
<h3><strong>First Name: <input data-bind="value: firstName"></strong></h3>