Ozerich
Ozerich

Reputation: 2000

Knockout: click & checked bindings in one element

I have array of limits, and checkboxes for enable/disable limits. But checkboxes do not work

jsFiddle

function Limit(start, end)
{
    var that = this;

    this.start = start;
    this.end = end;

    this.label = ko.computed(function(){
        return that.start + ' - ' + that.end;            
    });
}

function ViewModel()
{
    var that = this;

    this.limits = [new Limit(1,2), new Limit(3,4), new Limit(4,5)];

    this.activeLimit = ko.observable(that.limits[0]);

    this.changeActiveLimit = function(limit)
    {
            that.activeLimit(limit);
    }
}

ko.applyBindings(new ViewModel());​

My HTML

<div data-bind="foreach: {data: limits, as: 'limit'}">
 <input type="checkbox" data-bind="click: $root.changeActiveLimit, checked: limit.label == $root.activeLimit().label"/>
    <span data-bind="text: limit.label"/> 

</div>

Upvotes: 15

Views: 5456

Answers (2)

Tariqulazam
Tariqulazam

Reputation: 4585

If you Modify your viewModel like below it will work

function ViewModel()
{
    var that = this;

    this.limits = [new Limit(1,2), new Limit(3,4), new Limit(4,5)];

    this.activeLimit = ko.observable(that.limits[0]);

    this.changeActiveLimit = function(limit)
    {
            that.activeLimit(limit);
            return true;
    }
}

return true is the critical part here.

Here is a working fiddle http://jsfiddle.net/tariqulazam/WtPM9/10/

Upvotes: 15

Lerin Sonberg
Lerin Sonberg

Reputation: 623

The key is to return true; at the end of the click handler function! This updates the UI correctly.

Upvotes: 13

Related Questions