I'm using knockout.js for an editable table, and I'm trying to fire a validation function when an input field value within the table is changed.
I have tried using an editable computed observable: change event on select with knockout binding, how can i know if its a real change (mhu's answer)
I have tried using observable extenders: KO Extenders
I have also tried using the change event:
Each time I have tried, only the original value is returned.
What is the standard way to intercept the new value of an observableArray
item in order to validate the new value? Is this not bread-and-butter stuff for KO?