I have an Angular Kendo Grid referencing it's options object with k-options
and k-rebind
...
<kendo-grid k-data-source="data" k-options="options" k-rebind="options"></kendo-grid>
When I change the column titles in the referenced options object the grid doesn't notice the change and therefore doesn't fire k-rebind
on the next digest.
How can I get it to watch the options object deeply and notice these important changes?
Working code pen.