How to set some value into oj-table cell from javascript and css
Summary
How to set some value into oj-table cell from javascript and cssContent
Hi All,
I have created an ADP table with 4 rows and 10 columns. have to set some static text on the specific oj-table cell based on some logic in JS.
For example, want to set "Hello" in row 3 and column 4.like that.
Could you please help with this usecase?
I have tried adding css - every other property in css is working but unable to set the dynamic value for any cell from css.
.countTableRowORFG1 table tr:nth-child(4) td:nth-child(4){
TextContent: "<b>Personal Info</b>";
background: Green;
0