execute paint(g, c) of invisible jtable
is it possible to execute paint(g, c) when table.setVisible(false)...
i need this because i have 2 jtable
1. editable jtable for editing & display purpose in the app
2. hidden jtable for printing. this one is customized first table
which include report header-like text, merging columns for summary, etc
when i printed the 2nd table via table.print(mode,header,footer) i got only outer border...
so then i realized that paint(g, c) is called automatically only when table is visible...
so is it possible painting invisible jtable...
i've tried repaint(), updateUI() but nothing happened.
or maybe there's a better solution.
thank's

