Within my Angular 5 app, I am utilizing the devextreme grid. When a specific item is activated, the code below is executed:
public setRowColor(e){
e.rowElement.css("background-color","#d6dde7");
}
The property rowElement
belongs to a row. However, I encounter the following error upon executing this method:
ERROR TypeError: e.rowElement.css is not a function