Hi Alexander,
Thanks for the reply - I did actually find a way to do this, and have blogged about it here:
http://www.scottlogic.co.uk/blog/colin/2013/04/comparing-kendoui-and-knockout-with-a-bit-of-jquerymobile-on-the-side/#construction
In brief - you change the object returned by the constructor function into an observable:
function
KendoViewModel() {
this
.name = “john”;
return
kendo.observable(
this
);
}
var
viewModel =
new
KendoViewModel ();
Although you have to be very careful with how you use 'this' within your constructor function, again, as detailed in the blog post,
Colin E.