问题描述
我正在尝试使用最新的material + cdk创建角度的内联可编辑表格.
I'm trying to build an inline editable table using the latest material+cdk for angular.
这是我到目前为止所得到的: 完成StackBlitz示例
This is what I got so far: Complete StackBlitz example
模板
<form [formGroup]="form">
<h1>Works</h1>
<div formArrayName="dates" *ngFor="let date of rows.controls; let i = index;">
<div [formGroupName]="i">
<input type="date" formControlName="from" placeholder="From date">
<input type="date" formControlName="to" placeholder="To date">
</div>
</div>
<h1>Wont work</h1>
<table mat-table [dataSource]="dataSource" formArrayName="dates">
<!-- Row definitions -->
<tr mat-header-row *matHeaderRowDef="displayColumns"></tr>
<tr mat-row *matRowDef="let row; let i = index; columns: displayColumns;" [formGroupName]="i"></tr>
<!-- Column definitions -->
<ng-container matColumnDef="from">
<th mat-header-cell *matHeaderCellDef> From </th>
<td mat-cell *matCellDef="let row">
<input type="date" formControlName="from" placeholder="From date">
</td>
</ng-container>
<ng-container matColumnDef="to">
<th mat-header-cell *matHeaderCellDef> To </th>
<td mat-cell *matCellDef="let row">
<input type="date" formControlName="to" placeholder="To date">
</td>
</ng-container>
</table>
<button type="button" (click)="addRow()">Add row</button>
</form>
组件
export class AppComponent implements OnInit {
data: TableData[] = [ { from: new Date(), to: new Date() } ];
dataSource = new BehaviorSubject<AbstractControl[]>([]);
displayColumns = ['from', 'to'];
rows: FormArray = this.fb.array([]);
form: FormGroup = this.fb.group({ 'dates': this.rows });
constructor(private fb: FormBuilder) { }
ngOnInit() {
this.data.forEach((d: TableData) => this.addRow(d, false));
this.updateView();
}
emptyTable() {
while (this.rows.length !== 0) {
this.rows.removeAt(0);
}
}
addRow(d?: TableData, noUpdate?: boolean) {
const row = this.fb.group({
'from' : [d && d.from ? d.from : null, []],
'to' : [d && d.to ? d.to : null, []]
});
this.rows.push(row);
if (!noUpdate) { this.updateView(); }
}
updateView() {
this.dataSource.next(this.rows.controls);
}
}
问题
这行不通.控制台产量
Problem
This wont work. Console yields
[formGroupName]="i"
似乎无效,导致使用formArray时路径应为dates -> 0 -> from
.
It seems as if the [formGroupName]="i"
has no effect, cause the path should be dates -> 0 -> from
when using a formArray.
我当前的解决方法:对于这个问题,我绕过了内部路径查找(formControlName="from"
),直接使用了表单控件:[formControl]="row.get('from')"
,但是我想知道,我如何(或至少为什么不能)使用反应式表单"首选方式.
My current workaround: For this problem, I've bypassed the internal path lookup (formControlName="from"
) and use the form control directly: [formControl]="row.get('from')"
, but I would like to know how I can (or at least why I cannot) use the Reactive Form preferred way.
欢迎任何提示.谢谢.
由于我认为这是一个错误,因此我已经向问题注册了angular/material2 github存储库.
Since I think this is a bug, I've registered an issue with the angular/material2 github repo.
推荐答案
我将使用我们可以在matCellDef
绑定中获得的索引:
I would use the index which we can get within matCellDef
binding:
*matCellDef="let row; let index = index" [formGroupName]="index"
Forked Stackblitz
这篇关于使用FormArray的Angular Material可编辑表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!