KO Search on Enter
by olegatilla
HTML
<input id="searchBox" type="text" data-bind="event: {keypress: searchKeyboardCmd}" />
JavaScript
var vm = function() {
var self = this;
this.searchKeyboardCmd = function (data, event) {
if (event.keyCode == 13) {
console.log(event.currentTarget.value);
}
return true;
}
}
ko.applyBindings(new vm());