-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Table shows Empty cells #3
Comments
Please check the API call in user.service.ts |
After Edit user it duplicating rows in table. ` Edit User<form [formGroup]="editForm" (ngSubmit)="onSubmit()"> Email address:
`import { Component, OnInit } from '@angular/core'; @component({ user: User; ngOnInit() {
} onSubmit() { }` `import {Injectable} from '@angular/core'; const httpOptions = { @Injectable() constructor(private http : HttpClient) {} private userUrl = 'http......'; //I have inserted ip address:port number/users public getUsers() : Observable<User[]> { public deleteUser(user) { updateUser(user: User) { plz help |
On click of Update, a dialog should appear in editable format. Pls check here - https://www.devglan.com/angular/angular-6-example |
Implemented Exactly like this but table shoes empty rows...
The text was updated successfully, but these errors were encountered: