I am updating data into database by entering value into the table cell, I need to set focus on the same cell if validation fails. this table is bounded through knockout.js view model.
self.FirstName = ko.observable(report.OverallRetention).extend({
reportValueChange: {
property: firstName
}
});
ko.extenders.reportValueChange = function(target, option) {
debugger;
var _oldValue;
target.setFocus = function(val) {
target.hasfocus = val;
};
target.subscribe(function(oldValue) {
_oldValue = oldValue;
}, null, 'beforeChange');
target.subscribe(function(newValue) { ///////Want to set set focus here.
wouldn't you just use the hasFocus data binding?
https://jsfiddle.net/0o89pmju/52/
click the clear name button and validation will fail. and the autofocus will be set on the first name.
I wasn't quite following your extender so I used the required one from the documentation http://knockoutjs.com/documentation/extenders.html
html
js