Hello,
So I read some of the Kendo documentation regarding MVVM and it says that once the view model is updated the view (HTML) should update as well.
I tried that many times and when I change the viewModel from javascript I don't see the changes updated in the HTML unless I trigger the change event, as shown here:
https://jsfiddle.net/oycbw9e6/
You will notice that if you comment out this line: viewModel.trigger("change", { field: "price"}); then the changes won't be propagated to the HTML view.
Is there any way it can be done automatically without triggering the "change" event?
Thanks!