Naomi Kraus
Naomi Kraus

Reputation: 11

Navigate on AngularJS + Kendo UI Mobile

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

Answers (1)

Naomi Kraus
Naomi Kraus

Reputation: 11

telerik team answer me, the solution is: kendo.mobile.application.navigate(viewName) (without '#' sign)

Upvotes: 1

Related Questions