I have a page where I have a table and a grid, and when I click on row from the grid:
gridApi.selection.on.rowSelectionChanged($scope, function(row) {
$scope.formula = row.entity.formula;
console.log(row.entity.factId);
});
I want a certain cell from the table to be highlighted.
based on the factid attribute.
<div factid="1010898">320.00</div>
What is the best angular way without using any external library like jquery, jqlite from angular being ok to use.
Thanks!