> Thanks for any Tips.
>
> WT-
>> Hi,
>>
[quoted text clipped - 16 lines]
>
> UIManager.put( "TableHeader.background"", new Color( 200, 0, 0 ); );
[snip]
I was a bit too quick there and one semi-colon too many
showed up. The line should read:
UIManager.put( "TableHeader.background"", new Color( 200, 0, 0 ) );
Gregory A. Swarthout - 30 Dec 2003 23:05 GMT
> >> Hi,
> >>
[quoted text clipped - 22 lines]
>
> UIManager.put( "TableHeader.background"", new Color( 200, 0, 0 ) );
-----------------------------------------^
Not to mention one double-quote too many.
willy - 03 Jan 2004 02:39 GMT
> >> Hi,
> >>
[quoted text clipped - 22 lines]
>
> UIManager.put( "TableHeader.background"", new Color( 200, 0, 0 ) );
Robert,
Your suggestion worked just fine for what I needed to do... with a few
quirks I ironed out with some fiddling.
Thanks,
W-
Christian Kaufhold - 03 Jan 2004 13:54 GMT
>> I was a bit too quick there and one semi-colon too many
>> showed up. The line should read:
>>
>> UIManager.put( "TableHeader.background"", new Color( 200, 0, 0 ) );
The line should read:
UIManager.put("TableHeader.background", new ColorUIResource(200, 0, 0));
But there is no need to change these *global* settings. Just use a custom
header renderer and set there any colors etc. you want.
Christian
Robert Karlsson - 04 Jan 2004 20:12 GMT
>>>I was a bit too quick there and one semi-colon too many
>>>showed up. The line should read:
[quoted text clipped - 4 lines]
>
> UIManager.put("TableHeader.background", new ColorUIResource(200, 0, 0));
[snip]
Thanks!
Hmm, that was annoying. I think I'm going blind :-)
.: rob