Is there a way to dynamically modify this CSS style using JavaScript or in an Angular framework?
.ui-grid-row.ui-grid-row-selected > [ui-grid-row] > .ui-grid-cell{
background-color: transparent;
color: #0a0;
}
.ui-grid-cell-focus {
outline: 0;
background-color: transparent;
}
I have a specific question different from:
Dynamically change a css class' properties with AngularJS
My query pertains to using a ui-grid and default classes applied to rows through the rowSelection gridOption. Rather than conditionally changing the class, I am looking to alter the class's style.