Skip to main content
1 vote
2 answers
7k views

I have the following routes defined: const appRoutes: Routes = [ { path: 'signup', component: SignupComponent }, { path: 'home', component: HomeComponent }, { path: '**', component: ...
Dan Dinu's user avatar
  • 33.5k
0 votes
1 answer
366 views

Angular 4 serach box issue How to stop the value in second search box text when we enter value in one text box. we have multiple searchbox for each of the item in my page.when we type any text in one ...
user1877936's user avatar
0 votes
0 answers
54 views

While migrating old angular app to angular 4 I came across this in .js file customized dropdown hps-dropdown model="studentRequest.CountryType" reset-id="countryResetId" is-required="false" options=...
user1877936's user avatar
0 votes
1 answer
520 views

I need to pass an array from one page to another. In the first page the array is created by selecting items from a list and it push all itemes ok, but when I received this array in another page, it ...
CaribeSoft's user avatar
0 votes
1 answer
2k views

Angular App throwing Cannot match any routes error with XSS script in URL : I am developing an application in Angular 4. When I am trying to write routes for a feature module, I am getting an error ...
Hamdi Hmidi's user avatar
-1 votes
1 answer
716 views

I need to remove %20 to + sign angular5 following URL http://localhost:4200/listings?item=peter%20in%20england&id=158525 this.router.navigate(['/listings'], { queryParams: { 'item': searchstring,...
vasan srini G's user avatar
0 votes
2 answers
123 views

app.module.ts import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@...
Deepak's user avatar
  • 1
2 votes
0 answers
599 views

In My Angular App i Have three different layouts for three different users adminlayout for admin xyzlayout for company customerlayout for Customer i have set up three different modules and routing ...
Benson OO's user avatar
  • 527
0 votes
0 answers
221 views

In My Angular App I have setup the routing app.routing.ts as shown below: const routes: Routes = [{ path: '', redirectTo: '/login', pathMatch: 'full', canActivate: [LoginGuard] }, { ...
Benson OO's user avatar
  • 527
1 vote
0 answers
121 views

I tried given below code. But previous url can't get in service pages previousUrl: string; constructor(router: Router) { router.events .filter(event => event instanceof NavigationEnd) ....
Don's user avatar
  • 37
0 votes
3 answers
645 views

how to reduce the time for loading of the application. My angular6 application has one app module. under the app module, I have so many components like home, signup, login, user-dashboard, client-...
rupesh sripuram's user avatar
2 votes
1 answer
61 views

When I removes # from angular 4 project using following code. in app.module.ts file imports: [ ... RouterModule.forRoot(routes, { useHash: true }) // remove second argument ] and in providers @...
purnima kamble's user avatar
0 votes
2 answers
457 views

When I try to startup my project w/ IIS Express I get the error: enter image description here
amol gaikwad's user avatar
0 votes
0 answers
64 views

I am using router.navigate in Angular4, but the problem with this is on opening the new tab the previous tab freezes for seconds. In other words, I cannot perform any operation on the first tab till ...
Lakshya's user avatar
1 vote
0 answers
243 views

I have the following page in my Ionic/Angular project: <nav mat-tab-nav-bar> <a mat-tab-link [routerLink]="['./', { outlets: { sub: ['a'] } }]" routerLinkActive #a="...
moritzg's user avatar
  • 4,414

15 30 50 per page
1
2 3 4 5
22