Top "Knockout.js" questions

Knockout.

make an input only-numeric type on knockout

i read many tutorials but i dont know how to do this, this is the input input(type="text",name="…

javascript knockout.js knockout-2.0
<input> lostfocus/onblur event in knockout

I want to execute an event on a knockout observable bound to an input. This function should be executed when …

knockout.js mouseout event-binding
Prevent firing the blur event if any one of its children receives focus

I have a div on a page that shows some info about a particular category (Image, Name etc). When I …

javascript jquery knockout.js onblur
Knockout.js: Multiple ViewModel bindings on a page or a part of a page

I am wondering if it is possible to use Knockout.js's ko.applyBindings() multiple times to bind different ViewModels to …

mvvm knockout.js viewmodel
integrating jquery ui dialog with knockoutjs

I am trying to create knockoutjs bindings for jquery ui dialogs, and cannot get the dialog to open. The dialog …

jquery-ui jquery-ui-dialog knockout.js
How to open a new tab with router.navigate in TypeScript

The following typescript code will always open in the current browser tab navigate($data: menuItem, $event: JQueryEventObject) { //... let a = $event.…

typescript knockout.js single-page-application durandal
Example of knockoutjs pattern for multi-view applications

I am building an application that contains two complex, significantly different (yet with some shared components) views. One view allows …

knockout.js
Knockout.js "if Binding" on multiple booleans

Is it possible to use Knockout's if binding on more than one boolean? Such as <div data-bind="if: (property.…

knockout.js knockout-2.0
Knockout.js - foreach binding - test if last element

I am using the following template: <div class="datatypeOptions" data-bind="if: $data.datatypeTemplate().allowOptions"> <h3>Allowed …

javascript knockout.js
Change observable but don't notify subscribers in knockout.js

Is there a way to ignore subscribers on a value change of the observable. Id like to change a value …

javascript events knockout.js