I have a simple model for keeping my folders:
var FolderModel = {
folders: ko.observableArray([
{id:'Global', uid: 'Global', name: 'Global', count:0},
{id:'New', uid: 'New', name: 'New', count:0},
{id:'Important', uid: 'Important', name: 'Important', count:0}
]);
This model is binded to:
<ul class="folder-tree" data-bind="foreach: FolderModel.folders">
<li>
<span data-bind="text: $data.name"></span>
<span class="count" data-bind="text: $data.count"></span>
</li>
</ul>
So the initial view will be something like this:
- Global (0)
- New (0)
- Important (0)
Then I'm doing some request polling in another script: waiting for the counts to change and update the model. Yet, nothing I've done worked. I have tried:
var match = ko.utils.arrayFirst(FolderModel.folders(), function (item) {
return c == item.uid;
});
if (match) {
match.count = counts[c];
}
c - here is the uid of the folder. So, I use arrayFirst, get the item in the observable array and update it.
The next thing I tried:
$.each(FolderModel.folders(), function (index, folder) {
var newFolder = FolderModel.folders()[index];
newFolder.count = counts[folder.uid];
FolderModel.folders.replace(FolderModel.folders()[index], newFolder);
});
This also brought me nowhere and also looks quite silly, but I found this at another SO issue How to replace a given index element in knockoutjs
What am I doing wrong and what didn't I get in the knockout.js? I was thinking that whener the observable arrays element gets modified and if it is data-binded to something, that something will be modified as well.