Top "Computed-observable" questions

A computed observable is a synchronously updated value based on other observables; if they change so does the computer observable, immediately.

Force a computed property function to run

Given a computed property vm.checkedValueCount = ko.computed(function(){ var observables = getCurrentValues(); //an array of ko.observable[] return _.filter(observables, …

knockout.js computed-observable
How to create a computed observable array in Knockout

I would like to know how to create a computed observable array. In my view model, I have 2 observable arrays, …

knockout.js ko.observablearray computed-observable
Knockout: computed observable vs function

When using knockout, what is the advantage of using read-only computed observables rather than simple functions? Take the following viewmodel …

knockout.js knockout-2.0 computed-observable
Why does my ko computed observable not update bound UI elements when its value changes?

I'm trying to wrap a cookie in a computed observable (which I'll later turn into a protectedObservable) and I'm having …

javascript knockout.js computed-observable
Cannot write a value to a ko.computed unless you specify a 'write' option

I am trying to use computed properties in another computed properties and when i run code i am getting following …

knockout.js computed-observable
Knockout Observable Array with Sorting and Foreach Data-Binding

I have an array of objects that are hooked up into a knockout observable array. I needed to apply sorting …

arrays sorting knockout.js foreach computed-observable
ko.computed with passed argument shows function, but not a value

My task is to dynamicly form "href's" for links, each time an attached observable is changed. Here is the link …

knockout.js computed-observable
Knockout.js writeable computed boolean observable bound to checkbox - unreliable property setting

I have a checkbox which previously was bound directly to an observable property on my view model. I use a …

checkbox knockout.js computed-observable
Kendo DataSource: How to define "Computed" Properties for data read from remote odata source

Situation: kendo DataSource var ordersDataSource = new kendo.data.DataSource({ type: "odata", transport: { read: { url: "http://localhost/odata.svc/Orders?$expand=…

mvvm kendo-ui datasource odata computed-observable