1
|
<!--<h1 mat-dialog-title xmlns="">Pop up</h1>
|
2
|
<div mat-dialog-content>
|
3
|
<mat-form-field>
|
4
|
<label>Attr1</label>
|
5
|
<input>
|
6
|
<button>Change Attr1</button>
|
7
|
</mat-form-field>
|
8
|
</div>
|
9
|
<div mat-dialog-actions>
|
10
|
<button mat-button (click)="onClose()">Close</button>
|
11
|
</div>-->
|
12
|
|
13
|
<p>
|
14
|
<mat-form-field appearance="legacy">
|
15
|
<mat-label>Attr1</mat-label>
|
16
|
<input matInput placeholder="new Attr1">
|
17
|
<button type="button">Change</button>
|
18
|
</mat-form-field>
|
19
|
</p>
|
20
|
<p>
|
21
|
<mat-form-field appearance="standard">
|
22
|
<mat-label>Attr2</mat-label>
|
23
|
<input matInput placeholder="new Attr2">
|
24
|
<button type="button">Change</button>
|
25
|
</mat-form-field>
|
26
|
</p>
|
27
|
<p>
|
28
|
<button mat-button (click)="onClose()">Close</button>
|
29
|
</p>
|
30
|
|