Angular 2 table row control validation
问题 I just populated users from userservice and rendered in textbox control to table using *ngFor . User can change the value from table textbox. I want to validate on each row user textbox control. Here is my code.. Please provide a solution for my problem. Interface export interface IUser { userId: string; FirstName: string; status: number } Enum export enum UserStatus { Active = 0, InActive = 1, Resigned = 2 } Component export class UserComponent implements OnInit { users: IUser[];