How to stop knockout.js bindings evaluating on child elements

Aran Mulholland picture Aran Mulholland · Feb 13, 2012 · Viewed 10.1k times · Source

Using knockout, when you call ko.applyBinding(viewModel, "divId") it does a recursive binding down through the children of the element you bound to ("divId"). I would like to stop this evaluation at a child node. Is there a way to do this?

the reason why...

I would like to bind the entire page to a navigation view model, this will handle basic layout and ...smile... navigation. On the various pages I would like to bind certain regions to different view models that are not properties of the navigation view model. At the moment if I do this I get "unable to parse binding" errors as the navigation view model does not have the required properties. If I could stop the binding walking down the dom, I could just bind these items separately.

Answer

RP Niemeyer picture RP Niemeyer · Feb 13, 2012

There are several ways that you can go on this one. Typically, you would add multiple "sub" view models to a main view model and then use the with binding on the various areas with the actual view models to bind against them.

It is possible to technically do what you are after. You can create a custom binding that tells KO that it will handle binding the children itself. It would look like:

ko.bindingHandlers.stopBindings = {
    init: function() {
        return { controlsDescendantBindings: true };
    }  
};

When you place this on an element, then KO will ignore the children. Then, you could call ko.applyBindings on a child of this element with a different view model.

Sample: http://jsfiddle.net/rniemeyer/tWJxh/

Typically though, you would use multiple view models underneath a main view model using the with binding.