Issue
White Color appears in the background of the dialog box:
TypeScript: config-referrals.component.ts
openDialog(action, obj) {
this.globalService.configAvailability = null;
obj.action = action;
const dialogRef = this.dialog.open(AddConsultantComponent,{
data: obj,
});
dialogRef.afterClosed().subscribe(result => {
this.ngOnInit();
});
}
Solution
TypeScript: config-referrals.component.ts
openDialog(action, obj) {
this.globalService.configAvailability = null;
obj.action = action;
const dialogRef = this.dialog.open(AddConsultantComponent,{
data: obj,
scrollStrategy: new NoopScrollStrategy()
});
dialogRef.afterClosed().subscribe(result => {
this.ngOnInit();
});
}
Answered By - RURU
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.