单击表格单元格上的Angular 2使其可编辑

sha*_*ash 4 html typescript angular

我有一个ngFor for rows和我点击某些单元格以使其可编辑

<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>
Run Code Online (Sandbox Code Playgroud)

更多的是我添加了新行来支持它

<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);
    }
Run Code Online (Sandbox Code Playgroud)

我应该为这项任务实施什么?

AJT*_*T82 8

这是一个有效的解决方案.它可能不漂亮,但它的工作原理.

将表结构更改为以下内容:

<tr *ngFor="let invoice of invoiceItem.rows">
    <td *ngIf="invoice.rowId == editRowId"> 
       <input type="text" [(ngModel)]="invoice.hours">
    </td>
    <td *ngIf="invoice.rowId !== editRowId" (click)="toggle(invoice.rowId)">
       {{invoice.rowId}}
    </td>
    <!-- the rest of your fields in same manner -->
</tr>
Run Code Online (Sandbox Code Playgroud)

在您的组件中:

editRowId: any;

toggle(id){
  this.editRowId = id;
}
Run Code Online (Sandbox Code Playgroud)

这也支持添加新行.我想出了一个用于为新行设置id的hack,如下所示:

addRow() {
  let indexForId = this.invoiceItem.rows.length + 1
  this.rows.push({
    // .....
    rowId: indexForId,
  })
}
Run Code Online (Sandbox Code Playgroud)

你可能会找到一个更好的方法:)

这是一个工作的plunker