The built-in routing object in AngularJS, which can map the browser URL to a defined route.
2
votes
0answers
499 views
Using $routeProvider without specifying template and ng-view in AngularJS
I want to use angular's routing function only to bind views and controllers without indicating template and ng-view.
This is what I have so far, and is working well.
JavaScript
...
1
vote
0answers
56 views
AngularJS: remembering state/setup of complex views with routes
In a single page application, is there a way of switching back and forth to an AngularJS route and to display it back in the same state as it was shown before?
Usually this would be implemented by ...
1
vote
0answers
58 views
Virtual URL in angularJs with routeProvider
I have a list of items app/#/items, and a form to filter the item by the location that it's located in.
I use dirty checking to trigger a method of a service that communicates with the Backend and ...
1
vote
0answers
202 views
AngularJS routing for Kendo UI mobile
I'm starting to develop mobile application with Kendo UI mobile, AngularJS, PhoneGap. It would be nice to use Angular routing stuff. But Kendo UI mobile has its own routing system. Are any approaches ...
1
vote
0answers
72 views
Views that behave as lightbox or standalone depending on context
Let's say we have three views: A, B and X. The urls for these are /A, /B and /X.
A and B both contain a link pointing to X. When clicked, X renders as a lightbox on top of A or B, and the url is ...
1
vote
0answers
95 views
Way to use AngularJS in a magazine reader app
I'm learning AngularJS to make an app like this one.
The example site uses a global JS object for one issue of a magazine to manage pages of it, and uses click handlers to deal w/ page switching and ...
0
votes
0answers
23 views
How do I execute foundation js call after images are loaded in AngularJS ngview?
I'm creating a web application with AngularJS and Foundation.
The problem arises when I use the Orbit content slider packed with Foundation. It requires a call to foundation's initializing function ...
0
votes
0answers
47 views
routingProvide not found AngularJs
I am just trying to learn Angular.Js and got stuck here watching a tutorial.
I just created a demo App with the following code ... and I am getting an the following error. Any help would be greatly ...
0
votes
0answers
184 views
adding angularjs to spring mvc
i am trying to add angularjs to my spring 3.0 project. I am not able to add angularjs as front end technology for my project. here is my web.xml file.
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
0answers
41 views
how to trap angularjs route event when query string change
I have a angular route like /x?stage=list, I want to trap route change event when route is changed to /x?stage=details, I have try bind event "$routeChangeStart", "$routeChangeSuccess", however but ...
0
votes
0answers
84 views
Dynamic routing with dynamic controllers in AngularJS
I am currently using require.js and angular. Since I have a very long list of custom views, each for a different task, I've cooked up a way of including them dynamically using requirejs.
First a ...
0
votes
0answers
109 views
Angular-ui-router : Extend new state
Recently, I started try AngularJS, but I have some problem about ui-router, I have some requirement about dynamic extend router table, for example :
Lets start at home router like below
...
0
votes
0answers
141 views
Using 'resolve' to wait for query results in routeProvider
I'm having trouble figuring out how to get the routeProvider to wait until a remote call returns. The best solution I've seen for far was the example here: delaying angular route change
. ...
0
votes
0answers
84 views
Spring Server using Angular Route
I am working on a project that uses angular routes on it's main page to manage the view.
So "address:port/page" is really "address:port/main.html" on the 'page' route. My Spring version is ...
0
votes
0answers
273 views
AngularJS Route breaks on manual refresh
In the config method, I have some routes defined as follows:
$locationProvider.html5Mode(true);
$routeProvider.when('/', {
...
});
$routeProvider.when('/front', {
...
});
...