根据条件下的网格启用或禁用每行可编辑的行

enable or disable row editable per row based on condition infragistic grid

我需要根据网格数据使行可编辑。有些行是可编辑的,有些则不是。我尝试了 cellEditExit/cellEdit 活动并尝试取消活动但没有成功。

使用 (rowEditEnter) 和 (cellEditEnter) 是正确的方法。我很惊讶它没有起作用:

<igx-grid [data]="data" height="550px" primaryKey="ProductID"
        [rowEditable]="true"
        (rowEditEnter)="rowEditEnter($event)"
        (cellEditEnter)="cellEditEnter($event)"
...
public rowEditEnter(evt) {
    evt.cancel = true;
}
public cellEditEnter(evt) {
    evt.cancel = true;
}

你可以使用这个sample and topic as a reference and understand the event cancelation sequence

您使用的是哪个版本的产品?我的建议是使用最新版本11.1.7