-
1 Sep 2008 8:51 AM #1
Icons in table/grid
Icons in table/grid
Hi
When will it be possible to use icons in the header of a table column and in a table cell?
Baskor
PS Great framework by the way!
-
2 Sep 2008 12:46 PM #2
-
3 Sep 2008 1:50 AM #3
You can use icons in columns at least in this way:
Code:tableColumn.setRenderer(new CellRenderer() { public String render(Component item, String property, Object value) { return "<img src='icon.png'> "; } });


Reply With Quote