What I am trying to do is
I have a java script model of system that runs a series of tasks on the server. The object structure looks something like
Job
Tasks
Task 1
Task 2
Job
Tasks
Task3
Task4
Each task has various properties, like success, error log, which I use on the tree view nodes
I regularly update the model using a ajax call
I want to bind this model to the tree view control and when I update properties in the model have knockout update the tree view.
Any basic example of binding a model to the tree view via knockout would get me going.
Thanks