我有一個ngFor行和我什麼時,我的一些細胞點擊使其可編輯上點擊表格單元格角2使其可編輯
<tr *ngFor="let invoice of invoiceItem.rows">
<td contenteditable='true' (input)="onRowClick($event, invoice.rowId)">{{ invoice.rowName }}</td>
<td>{{ invoice.hours}}</td>
<td>{{ invoice.price }}</td>
<td>{{ invoice.comments }}</td>
<td>{{ invoice.total}} </td>
</tr>
更過我如何處理新行支持其加入
<button (click)='addRow()'>Add a row</button>
addRow() {
this.invoiceItem.rows.push({
invoiceDetailsId: this.invoiceItem.item.invoiceId,
rowName: '',
hours: 0,
price: 0,
comments: '',
total: 0,
rowId:
})
}
onRowClick(event, id) {
console.log(event.target.outerText, id);
}
我應該爲這項任務實施什麼?
嘿!我不知道當我取消刪除答案時是否收到通知。但請檢查,有一個工作解決方案。 ) – Alex
好的檢查,tnx – shaharnakash