Top "Knockout.js" questions

Knockout.

Getting "Cannot read property 'nodeType' of null" when calling ko.applyBindings

I have this knockout code: function Task(data) { this.title = ko.observable(data.title); this.isDone = ko.observable(data.isDone); } …

javascript knockout.js
Knockout Filtering on Observable Array

I've started learning Knockout and I'm having some trouble filtering an observable array on a button click and displaying the …

javascript knockout.js filter observable
jQuery UI datepicker change event not caught by KnockoutJS

I'm trying to use KnockoutJS with jQuery UI. I have an input element with a datepicker attached. I'm currently running …

jquery-ui knockout.js
Can you just update a partial view instead of full page post?

Is there a way to submit a partial view form in asp.net mvc without reloading the parent page, but …

asp.net-mvc jquery knockout.js partial-views
Is it possible to data-bind visible to the negation ("!") of a boolean ViewModel property?

I'd like to use a property on my ViewModel to toggle which icon to display without creating a separate computed …

knockout.js
When to use ko.utils.unwrapObservable?

I've written a few custom bindings using KnockoutJS. I'm still unsure when to use ko.utils.unwrapObservable(item) Looking at …

javascript knockout.js
Sorting an Observable Array in Knockout

I have an observable array in Knockout of person objects. I wanted to be able to sort the list of …

knockout.js
knockout.js and listen to check event on checkbox

I'm trying to get a function to execute when a checkbox is checked or unchecked to verify all checkboxes are …

checkbox knockout.js
How to have multiple data-bind attributes on one element?

I need to have multiple data bindings on one element. For example, I want a href as well as a …

javascript jquery knockout.js
How to data-bind the 'class' or 'id' attribute of a div, while using containerless control flow?

I am trying out the great new containerless control flow (new feature number 2) at Knockout 2.0.0 released or http://jsfiddle.net/…

knockout.js