Hi,
I am developing a program using the sap.ui.table.Table component and I am facing the following problem:
After I create the table object and place it in the correct div, I use jQuery to set a background color for some cells of the table.
e.g:
$('#CELL_ID').css('background-color','SOME_COLOR');
Where CELL_ID is the id of a cell from sap.ui.table.Table.
The problem is that when I try to print the table, these background colors do not come.
This is how the table looks like after I set the background colors.
This is What I get when I try to print it out (No background color):
Is it because I am using jQuery to set the background colors? Would it be a better way to set these backgrounds in this component?