Posts

Showing posts with the label angular2-routing

reload particular component in angular when user registers using material dialog

Image
Clash Royale CLAN TAG #URR8PPP reload particular component in angular when user registers using material dialog I am trying to load the registered users in to where the registration happens on the . Once the user registers then the registered user should be populated in the .For that i have written the code as below. This below code is in projects.component.html <a href="javascript:;" (click)="openDialog()">Register</a> The below code is in projects.component.ts openDialog(): void { const dialogRef = this.dialog.open(RegisterComponent, { width:'50%', height:'85%' }); } When i click on the Register it opens up a dialog box with the below fields. The below code is register.component.html <form role="form" #heroForm="ngForm"> <!-- Registration Form on Modal Dialog Box Start --> <!-- Name Start --> <div class="form-group row"> ...