All Questions
3,102 questions
2
votes
2
answers
104
views
Angular JS Angular 18 hybrid routing
I have an angular js/angular 18 hybrid application which is working, but what I am trying to do is migrate the routes of the customer users like this:
.state('customer', {
url: "/...
0
votes
0
answers
32
views
AngularJS UI-Router dynamic resolve list
We currently have this dynamic routing (don't mind sytax errors, transformed from CoffeeScript by hand):
angular
.module 'App'
.config(function ($stateProvider) {
$stateProvider
...
2
votes
1
answer
81
views
How to maintain query params when redirecting in Angular RoutingModule with redirectTo?
Summary
I want to redirect in my Angular RoutingModule from one path to another while maintaining the query params. However, when the redirect completes, the query params are not present anymore.
The ...
0
votes
1
answer
63
views
Trigger a url refresh with ui-router and transitionservice
Hi I have an issue with ui-router . My url is replaced but the page is not reloading.
I work with "@uirouter/angularjs": "^1.0.26", "angular": "~1.5.11",
My ...
0
votes
0
answers
24
views
AngularJS manual routing with ExpressJS
I am using AngularJS in the client side combined with ExpressJS in the server side.
When pages are loaded in the browser all works fine there: clicks on the various button and differents angular ...
0
votes
0
answers
158
views
How to pass a dropdown value to <select> element in angular to auto populate data in dropdown
I want to pass the form data received from database to a html page which contains dropdown values.
I want to prepopulate the data from database to the dropdown.
I am having a controller and its select ...
0
votes
1
answer
98
views
How to set up path paramater in angular and access in the controller?
I am trying to set up route like below :
$stateProvider.state('transactions', {
url: '/transactions',
templateUrl: url,
menu: 'Transactions'
...
0
votes
0
answers
254
views
Error: $injector:modulerr Module Error while Upgrade AngularJs 1.5 to Angular Js 1.8.2
I'm upgrading "angular" : "1.5.0" to "angular" : "1.8.2" .
Followed multiple articles and opinions but still got the same error as I mention below in the ...
1
vote
1
answer
1k
views
AngularJs net::ERR_ABORTED 404 on github pages
I'm working on a project and need to submit through github pages, however, when I upload my project, some of my JS files doesn't load and consoles an error message of Get net::ERR_ABORTED 404.
I have ...
0
votes
0
answers
76
views
How to import Javascript package in browser via script tag or similar
I know I'm a bit behind the times here, but how can I import from this library (uirouter/react-hybrid) for an existing Angularjs site using only tags to include libraries? I have tried a few things, ...
0
votes
1
answer
85
views
angularjs ui-router nested states new controller not working
I'm stuck with nested states in the ui-router.
I'm rendering a page with regions, countries and people per country
The index.html has three regions as link, EMEA APAC and AMER
the part of the index ...
0
votes
1
answer
31
views
change rout without reloading previous date angular js
I show my search result data as below.
This page URL is "http://localhost:8081/#!/app/sanction-screening". When user clicking the view button, I showed more data in a another page. View ...
0
votes
1
answer
629
views
angular repeat with template?
I'm currently trying to figure out how to use templates in angular. At present, I'm playing with ui.router (angular-ui-router) but I can't find good documentation on how the templating language is ...
0
votes
0
answers
24
views
How to work with AngularJS v1.5+ and angular-ui-router v1.0+ allowing views to be defined as template and controllers?
I'm migrating from AngularJS v1.5 (not using Components) to AngularJS v1.8, and having angular-ui-router v0.2.0.
After fixing a bunch of errors, my app is not loading. After I saw https://github.com/...
1
vote
1
answer
26
views
AngularJs, routing, problem creating several routes
I am new to AngularJs and very new to ui-router.
I seem to be having problems creating several routes. This is how I proceed, inspiring myself from a tutorial but failing to reproduce the result.
Here ...