Top "Knockout-2.0" questions

Knockout.

How to get Selected Text from select2 when using <input>

I am using the select2 control, loading data via ajax. This requires the use of the <input type=hidden..&…

javascript jquery knockout-2.0 jquery-select2 ui-select2
Angular.js vs Knockout.js vs Backbone.js

I am considering to use either Knockout or Angular or Backbone for my personal project. I need to build some …

angularjs backbone.js knockout-2.0
How to Clear Contents of an observableArray That was Populated from Previous Visits to a View

I have a Single Page Application that uses knockout for the data binding. The CAApproval.html view in my single …

knockout.js knockout-2.0 single-page-application
Setting the id attribute with knockoutjs including a prefix

I'm using KnockoutJS to iterate over an object, like this: Now this all works. But the problem i have is …

knockout.js knockout-2.0
Binding true / false to radio buttons in Knockout JS

In my view model I have a IsMale value that has the value true or false. In my UI I …

javascript knockout.js knockout-mapping-plugin knockout-2.0
Subscribe to observable array for new or removed entry only

So yes I can subscribe to an observable array: vm.myArray = ko.observableArray(); vm.myArray.subscribe(function(newVal){...}); The problem …

javascript knockout.js knockout-2.0
Radio buttons Knockoutjs

I have 2 values that I get from server A and B. I can only have one true at a time. …

knockout.js knockout-2.0
Get previous value of an observable in subscribe of same observable

Is it possible in knockout to get the current value of an observable within a subscription to that observable, before …

knockout.js knockout-2.0 observable
Knockout checkbox change event sends old value

I'm having a problem with knockout "checked" binding. It seems that "change" event at checkbox return old value, before it …

knockout.js knockout-2.0
Knockout.js Make every nested object an Observable

I am using Knockout.js as a MVVM library to bind my data to some pages. I'm currently building a …

javascript mvvm knockout.js knockout-mapping-plugin knockout-2.0