Tagged Questions
1
vote
0answers
27 views
Loading scripts in Angular
I'm working on an angular app that is becoming quite large. At the moment I have several controllers, each controller is dependent upon different jquery plugins. Currently I'm loading all the scripts ...
0
votes
0answers
33 views
AngularJS routing with Mongoose webserver
I'm testing a website locally on my machine. It uses AngularJS for routing and page changes, and I'm attempting to test the routes using the Mongoose webserver (extremely light).
My code is as ...
0
votes
1answer
47 views
External Links in Angular App
I'm in the process of incorporating Angular into a single page of an existing rails app.
Everything is working perfectly with the routing within the page using the following
...
2
votes
1answer
140 views
$location / switching between html5 and hashbang mode / link rewriting
I was under the impression that Angular would rewrite URLs that appear in template a @hrefs , such that they would work whether in html5 mode or hashbang mode. ...
0
votes
1answer
61 views
Angular app without routes
I have an application which needs to be able to dynamically add directives/filters/services/controllers. The functionality I need is akin to loading a Mac OS X Widget / Windows Gadget. To my knowledge ...
0
votes
1answer
144 views
Angularjs routing in different files
I'm checking out angular routing.
http://www.bennadel.com/blog/2420-Mapping-AngularJS-Routes-Onto-URL-Parameters-And-Client-Side-Events.htm
THe examples I see have all the routes be defined in the ...
0
votes
0answers
151 views
Why page not redirecting in AngularJS+Express
I am making an demo site with angular express seed by Brian Ford (thanks a lot), but after edit a post it does not redirecting to listing url. edit operation doing fine just not redirecting to listing ...
0
votes
1answer
104 views
AngularJS - get the list of defined routes - $routeProvider
I am trying to implement named routes, so I don't have to write the whole path (often changes).
I was thinking I could get away with writing a service that would return the list of defined routes and ...
0
votes
1answer
87 views
Routing in AngularJS with variable in the beginning of the URL
I'm experiencing some behavior that I can't explain, but I'm sure somebody else can. I'm setting up my app module like so:
var appmodule = angular.module('appmodule', ['ui']).config(
...
1
vote
1answer
539 views
Back button with nested states in Angular Router
I have an AngularJS application that makes use of the new, state-based ui-router. I have three different views in my application, where one is a top-level views, and the other two are nested ones.
...
0
votes
2answers
599 views
angular ng-view phonegap is not working
I am trying to make basic app with angularjs and phonegap in android. But it doesn't seem to be working. Below are my source code files:
index.html
<!DOCTYPE html>
<html ...
1
vote
1answer
220 views
What is the proper way for highlighting currently active menu in AngularJS?
I have a router, when some route is active - I show correct template. But my navigation menu is not in sync with this.. What is the proper way to sync navigation menu with router?
I've thought about ...
1
vote
1answer
45 views
How do I make an explicit path take precendence over a named parameter when defining angularjs routes
In the following example both routes resolve to the detail.html template. How do I make the first route take precedence since it's defined explicitly and not as a named parameter?
$routeProvider.
...
2
votes
3answers
1k views
Angular ng-view/routing not working in PhoneGap
I'm having a problem with ngView in PhoneGap.
Everything seems to be loading just fine and I can even get a basic controller working using ng-controller. But when I try to use routing with ngView, ...
1
vote
2answers
868 views
Navigate to AngularJS's SPA with QueryString parameters
The link to my SPA is constructed of an absolute URL + Query-String parameter as the following:
http://127.0.0.1/Pepole/Index?personId=[some_ID]
And my route configuration is:
...