I've been battling with what seems like it should be a really simple Knockout.js task for a number of hours, and after reading multiple websites and questions on SO, I'm still stumped!
Here is the fiddle: http://jsfiddle.net/PL8UW/
Essentially I have a table with a "status" column that is bound to a knockout viewmodel.
I also have an observable object that should allow you to filter on various statuses
If i bind the table directly to the data object everything shows, but if I bind to the computed, then nothing shows.
HTML:
<form>
<input id="foo" type="checkbox" checked /> Foo
<input id="bar" type="checkbox" checked /> Bar
</form>
<div id="tableDiv">
<table>
<thead>
<tr>
<th>Id</th>
<th>Status</th>
</tr>
</thead>
<tbody data-bind="foreach: filteredData">
<tr>
<td><span data-bind="html: id"></span></td>
<td><span data-bind="html: status"></span></td>
</tr>
</tbody>
</table>
</div>
javascript: var data = [ {"id": 1, "status": "foo"}, {"id": 2, "status": "bar"}, {"id": 3, "status": "foo"}, {"id": 4, "status": "foo"}, {"id": 5, "status": "bar"}];
var viewModel = {
tableData: ko.observableArray(data),
filter: ko.observable({'foo': ko.observable(true), 'bar': ko.observable(true)}),
filteredData: ko.computed(function() {
return ko.utils.arrayFilter(viewModel.tableData, function(item) {
return viewModel.filter[item.Status];
});
})
};
ko.applyBindings(viewModel, document.getElementById('tableDiv'));
$('input[type=checkbox]').click(function () {
viewModel.filter[this.id] = this.checked;
});