I am developing an angular 1.5 app and using the Kendo
panelbar component.
The panelbar does not support the angular ng-repeat directive and requires that the developer use a Kendo DataSource component to store the model data.
Simply stated, I want to update the panelbar's underlying data model and expect the changes to be automatically rendered in the panelbar like a normal angular app.
When you update a datasource that is attached to a panelbar the change is not rendered when you just update the underlying datasource. I then tried using the kendo.datasource insert method, but again I added data to the model (or datasource component) and it was not rendered. I then tried to insert new data into my model and call the panelbar.expand(byId), the expand never opens the branch. I've tried a number of other work arounds with only partial success.
What I need is the proper way to dynamically update a panelbar's data model and see the new data rendered (preferably not using jQuery and is more angular-like, but anyway I can get this to work is fine).
thanks in advance for your help....
The panelbar does not support the angular ng-repeat directive and requires that the developer use a Kendo DataSource component to store the model data.
Simply stated, I want to update the panelbar's underlying data model and expect the changes to be automatically rendered in the panelbar like a normal angular app.
When you update a datasource that is attached to a panelbar the change is not rendered when you just update the underlying datasource. I then tried using the kendo.datasource insert method, but again I added data to the model (or datasource component) and it was not rendered. I then tried to insert new data into my model and call the panelbar.expand(byId), the expand never opens the branch. I've tried a number of other work arounds with only partial success.
What I need is the proper way to dynamically update a panelbar's data model and see the new data rendered (preferably not using jQuery and is more angular-like, but anyway I can get this to work is fine).
thanks in advance for your help....