Getting started

  1. How KO works and what benefits it brings
  2. Downloading and installing

Observables

  1. Creating view models with observables
  2. Working with observable arrays

Computed observables

  1. Using computed observables
  2. Writable computed observables
  3. How dependency tracking works
  4. Pure computed observables
  5. Reference

Bindings

Controlling text and appearance

  1. The visible binding
  2. The text binding
  3. The html binding
  4. The css binding
  5. The style binding
  6. The attr binding

Control flow

  1. The foreach binding
  2. The if binding
  3. The ifnot binding
  4. The with binding
  5. The component binding

Working with form fields

  1. The click binding
  2. The event binding
  3. The submit binding
  4. The enable binding
  5. The disable binding
  6. The value binding
  7. The textInput binding
  8. The hasFocus binding
  9. The checked binding
  10. The options binding
  11. The selectedOptions binding
  12. The uniqueName binding

Rendering templates

  1. The template binding

Binding syntax

  1. The data-bind syntax
  2. The binding context

Creating custom bindings

  1. Creating custom bindings
  2. Controlling descendant bindings
  3. Supporting virtual elements
  4. Custom disposal logic
  5. Preprocessing: Extending the binding syntax

Components

  1. Overview: What components and custom elements offer
  2. Defining and registering components
  3. The component binding
  4. Using custom elements
  5. Advanced: Custom component loaders

Further techniques

  1. Loading and saving JSON data
  2. Extending observables
  3. Deferred updates
  4. Rate-limiting observables
  5. Unobtrusive event handling
  6. Using fn to add custom functions
  7. Microtasks
  8. Asynchronous error handling

Plugins

  1. The mapping plugin

More information

  1. Browser support
  2. Getting help
  3. Links to tutorials & examples
  4. Usage with AMD using RequireJs (Asynchronous Module Definition)

Observable Arrays

If you want to detect and respond to changes on one object, you鈥檇 use observables. If you want to detect and respond to changes of a collection of things, use an observableArray. This is useful in many scenarios where you鈥檙e displaying or editing multiple values and need repeated sections of UI to appear and disappear as items are added and removed.

Example

var myObservableArray = ko.observableArray();    // Initially an empty array
myObservableArray.push('Some value');            // Adds the value and notifies observers

To see how you can bind the observableArray to a UI and let the user modify it, see the simple list example.

Key point: An observableArray tracks which objects are in the array, not the state of those objects

Simply putting an object into an observableArray doesn鈥檛 make all of that object鈥檚 properties themselves observable. Of course, you can make those properties observable if you wish, but that鈥檚 an independent choice. An observableArray just tracks which objects it holds, and notifies listeners when objects are added or removed.

Prepopulating an observableArray

If you want your observable array not to start empty, but to contain some initial items, pass those items as an array to the constructor. For example,

// This observable array initially contains three objects
var anotherObservableArray = ko.observableArray([
    { name: "Bungle", type: "Bear" },
    { name: "George", type: "Hippo" },
    { name: "Zippy", type: "Unknown" }
]);

Reading information from an observableArray

Behind the scenes, an observableArray is actually an observable whose value is an array (plus, observableArray adds some additional features described below). So, you can get the underlying JavaScript array by invoking the observableArray as a function with no parameters, just like any other observable. Then you can read information from that underlying array. For example,

alert('The length of the array is ' + myObservableArray().length);
alert('The first element is ' + myObservableArray()[0]);

Technically you can use any of the native JavaScript array functions to operate on that underlying array, but normally there鈥檚 a better alternative. KO鈥檚 observableArray has equivalent functions of its own, and they鈥檙e more useful because:

  1. They work on all targeted browsers. (For example, the native JavaScript indexOf function doesn鈥檛 work on IE 8 or earlier, but KO鈥檚 indexOf works everywhere.)
  2. For functions that modify the contents of the array, such as push and splice, KO鈥檚 methods automatically trigger the dependency tracking mechanism so that all registered listeners are notified of the change, and your UI is automatically updated.
  3. The syntax is more convenient. To call KO鈥檚 push method, just write myObservableArray.push(...). This is slightly nicer than calling the underlying array鈥檚 push method by writing myObservableArray().push(...).

The rest of this page describes observableArray鈥檚 functions for reading and writing array information.

indexOf

The indexOf function returns the index of the first array item that equals your parameter. For example, myObservableArray.indexOf('Blah') will return the zero-based index of the first array entry that equals Blah, or the value -1 if no matching value was found.

slice

The slice function is the observableArray equivalent of the native JavaScript slice function (i.e., it returns the entries of your array from a given start index up to a given end index). Calling myObservableArray.slice(...) is equivalent to calling the same method on the underlying array (i.e., myObservableArray().slice(...)).

Manipulating an observableArray

observableArray exposes a familiar set of functions for modifying the contents of the array and notifying listeners.

pop, push, shift, unshift, reverse, sort, splice

All of these functions are equivalent to running the native JavaScript array functions on the underlying array, and then notifying listeners about the change:

  • push( value ) 鈥 Adds a new item to the end of array.
  • pop() 鈥 Removes the last value from the array and returns it.
  • unshift( value ) 鈥 Inserts a new item at the beginning of the array.
  • shift() 鈥 Removes the first value from the array and returns it.
  • reverse() 鈥 Reverses the order of the array and returns the observableArray (not the underlying array).
  • sort() 鈥 Sorts the array contents and returns the observableArray.
    • The default sort is alphabetical, but you can optionally pass a function to control how the array should be sorted. Your function should accept any two objects from the array and return a negative value if the first argument is smaller, a positive value is the second is smaller, or zero to treat them as equal. For example, to sort an array of 鈥榩erson鈥 objects by last name, you could write myObservableArray.sort(function (left, right) { return left.lastName == right.lastName ? 0 : (left.lastName < right.lastName ? -1 : 1) })
  • splice() 鈥 Removes and returns a given number of elements starting from a given index. For example, myObservableArray.splice(1, 3) removes three elements starting from index position 1 (i.e., the 2nd, 3rd, and 4th elements) and returns them as an array.

For more details about these observableArray functions, see the equivalent documentation of the standard JavaScript array functions.

remove and removeAll

observableArray adds some more useful methods that aren鈥檛 found on JavaScript arrays by default:

  • remove( someItem ) 鈥 Removes all values that equal someItem and returns them as an array.
  • remove( function (item) { return item.age < 18; } ) 鈥 Removes all values whose age property is less than 18, and returns them as an array.
  • removeAll( ['Chad', 132, undefined] ) 鈥 Removes all values that equal 'Chad', 123, or undefined and returns them as an array.
  • removeAll() 鈥 Removes all values and returns them as an array.

destroy and destroyAll (Note: Usually relevant to Ruby on Rails developers only)

The destroy and destroyAll functions are mainly intended as a convenience for developers using Ruby on Rails:

  • destroy( someItem ) 鈥 Finds any objects in the array that equal someItem and gives them a special property called _destroy with value true.
  • destroy( function (someItem) { return someItem.age < 18; } ) 鈥 Finds any objects in the array whose age property is less than 18, and gives those objects a special property called _destroy with value true.
  • destroyAll( ['Chad', 132, undefined] ) 鈥 Finds any objects in the array that equal 'Chad', 123, or undefined and gives them a special property called _destroy with value true.
  • destroyAll() 鈥 Gives a special property called _destroy with value true to all objects in the array.

So, what鈥檚 this _destroy thing all about? It鈥檚 only really interesting to Rails developers. The convention in Rails is that, when you pass into an action a JSON object graph, the framework can automatically convert it to an ActiveRecord object graph and then save it to your database. It knows which of the objects are already in your database, and issues the correct INSERT or UPDATE statements. To tell the framework to DELETE a record, you just mark it with _destroy set to true.

Note that when KO renders a foreach binding, it automatically hides any objects marked with _destroy equal to true. So, you can have some kind of 鈥渄elete鈥 button that invokes the destroy(someItem) method on the array, and this will immediately cause the specified item to vanish from the visible UI. Later, when you submit the JSON object graph to Rails, that item will also be deleted from the database (while the other array items will be inserted or updated as usual).

Delaying and/or suppressing change notifications

Normally, an observableArray notifies its subscribers immediately, as soon as it鈥檚 changed. But if an observableArray is changed repeatedly or triggers expensive updates, you may get better performance by limiting or delaying change notifications. This is accomplished using the rateLimit extender like this:

// Ensure it notifies about changes no more than once per 50-millisecond period
myViewModel.myObservableArray.extend({ rateLimit: 50 });