Is there a way to remove the bold style applied to the Table column header?
Also is it possible to remove/change the background gradient applied to the column header?
Is there a way to remove the bold style applied to the Table column header?
Also is it possible to remove/change the background gradient applied to the column header?
You can set the header text to something like this for non-bold headers:
[tt]My Header[/tt]
As for the gradient - code like this will set the background to white. Replace the RGB values for the color you wanted.
table = event.source.parent.getComponent("Table").viewport.view
table.tableHeader.background = (255,255,255)
Note that this won’t serialize - you’ll have to run this on [tt]internalFrameOpened[/tt] or something.