I am testing out Kendo’s ui MVVM capabilities and can’t seem to work out how to update the viewModel items so they update rows in a listView.
It updates fine if I replace all items with the new (json) items sent to me through a websocket but I am trying to simply update the matching items and expect to see these changes appear in my view (the listView div).
This is an extract of my code – what am I doing wrong?
<div id="listView">
<table>
<thead>
<tr>
<th>BatchID</th>
<th>Status</th>
<th>Progress</th>
<th>Owner</th>
<th>(Est)Completion Time</th>
</tr>
</thead>
<tbody data-template="row-template" data-bind="source: items"></tbody>
<tfoot data-template="footer-template" data-bind="source: this"></tfoot>
</table>
</div>
then in my script blocks:
<script id="row-template" type="text/x-kendo-template">
<tr>
<td data-bind="text: BatchID"></td>
<td data-bind="text: Status"></td>
<td data-bind="text: Progress"></td>
<td data-bind="text: Owner"></td>
<td data-bind="text: EstCompletion"></td>
</tr>
</script>
<script id="footer-template" type="text/x-kendo-template">
<tr>
<td>
Batch count: #: total() #
</td>
</tr>
</script>
<script>
$(document).ready(function () {
var viewModel = kendo.observable({
items: [],
total: function () {
return this.get("items").length;
}
});
kendo.bind($("#listView"), viewModel);
// register this reporting widget
var webSocket = CreateSocket("screen2", "reporting", "default", true);
webSocket.onmessage = function (e) {
try {
var smd = JSON.parse(e.data);
var data = JSON.parse(smd.Data);
jQuery.each(data, function () {
var id = this.BatchID;
var newItem = this;
var hasRow = false;
jQuery.each(viewModel.items, function () {
var itemTemp = this;
if (itemTemp.BatchID == id) {
hasRow = true;
itemTemp.Status == newItem.Status;
itemTemp.Progress = newItem.Progress;
itemTemp.EstCompletion = newItem.EstCompletion;
itemTemp.Completed = newItem.Completed;
}
});
if (!hasRow) {
var reportItem = new kendo.data.ObservableObject({
BatchID: "",
Owner: "",
Status: "",
Progress: "",
EstCompletion: "",
Completed: ""
});
reportItem.BatchID = this.BatchID;
reportItem.Owner = this.Owner;
reportItem.Status = this.Status;
reportItem.Progress = this.Progress;
reportItem.EstCompletion = this.EstCompletion;
reportItem.Completed = this.Completed;
viewModel.items.push(reportItem);
}
});
}
catch (e) {
//alert(e.message);
}
};
webSocket.onopen = function (e) {
// now register our interest in receiving reporting monitoring data
var bor = new SymMsgUp(GlobalInfo.UserID, "reporting", "default", "dfregister");
// convert to Json and send it off the the server
webSocket.send(bor.toServer());
};
webSocket.onclose = function (e) {
//responseDiv.innerHTML += '<div>Disconnected.</div>';
};
webSocket.onerror = function (e) {
//responseDiv.innerHTML += '<div>Error</div>'
};
});
</script>
The updates take place ( I checked with a debugger ) – but these changes are NOT reflected in the view..
Also, I created the var reportItem = new kendo.data.ObservableObject({ etc etc for testing – I rather not have to do this and simply dump the array of json objects into my observable collection (viewMode.Items). This works nicely but again it doesn’t update when I update individual items…
Thanks in advance!
Just received an answer from Kendo (after almost a week because I am using a trial license…) on how this can be done:
EDIT:
Just to explain that the line that does the trick is:
This is what I was after – a way of updating an entry in their observable collection that DOES update the ui.