I've been looking for a solution to this, and what I found is not pretty. Is there a better way to have a Mobile ListView redraw once you've updated its attached datasource(an array in this case) other than doing this in the controller?
$("#listView").getKendoMobileListView().dataSource.read();
I'm new to angular, but to me the controller having this level of knowledge about the view seems wrong.
$("#listView").getKendoMobileListView().dataSource.read();
I'm new to angular, but to me the controller having this level of knowledge about the view seems wrong.