Reputation: 11
I am very new to AngularJS + Kendo UI Mobile.
How can I navigate to a page from angular controller?
I tried this code:
var App = $("#app").data("kendoMobileApplication"); App.navigate("#menuCategories");
but I get this error: "Error: [$rootScope:inprog] $digest already in progress"
and about ngRoute I see:
"The mobile application instantiates and maintains its own routing mechanism based on the router component, which automatically matches and instantiates views when navigating. ... Note that AngularJS routing mechanisms are not supported"
Thanks in advance
Sorry for bad english ..
Naomi.
Upvotes: 0
Views: 203
Reputation: 11
telerik team answer me, the solution is: kendo.mobile.application.navigate(viewName) (without '#' sign)
Upvotes: 1