I have an angular widget that I'm placing into an angular kendo grid table row. In this widget, you can enter some text for a tag and this will be communicated to a rest endpoint and then updated within the widget on the data set. In regular angular, the two way data binding will automatically update this to whatever is associated with the same data set. In addition, you can use the scope chain for publish/subscribe events ($broadcast, $emit, $on) to listen for change events. When I place the widget into the kendo layout, it will render and update it's own data set, but this will not propagate to the other data sets. In addition, events on the scope chain won't emit up to the parent containers. So at some point, kendo is creating a new scope without inheriting from the parent scope (or so it seems).
So the question is...how do we bind the data, or scope so that we can update other display items that rely on the binding? It doesn't seem possible with the grid.
Any help is appreciated.
So the question is...how do we bind the data, or scope so that we can update other display items that rely on the binding? It doesn't seem possible with the grid.
Any help is appreciated.