I am using Kendo observable object to bind the Kendo ui grid. When adding/editing the values in the data source it is reflecting in the grid as well as the observable array. When using load button and explicitly adding values to the Kendo observable is not reflecting in the grid.
Here is sample working code.
Here is an example that works:
I made the following changes:
personDataArray
ObservableObject, and not to just a field of the ObservableObjectschema.data
to point to the data
field of the personDataArray
.dataSource.read()
when setting new data to the personDataArray
I think the last step should not be needed, but not sure.