You want to extend TreeTable and then override getCss() to change fonts and text or background colors. If you want to change the colors of the actual node icons you want to override getNodeIcon() and add resources for your own PNG files.
public abstract class MyTreeTable extends TreeTable {
private static ResourceReference CSS = new CompressedResourceReference(
MyTreeTable.class, "TreeTable.css");
private static ResourceReference documentIcon = new CompressedResourceReference(
MyTreeTable.class, "Icon_Document.png");
private static ResourceReference folderIcon = new CompressedResourceReference(
MyTreeTable.class, "Icon_Folder.png");
public MyTreeTable(String id, IColumn[] columns) {
super(id, columns);
}
@Override
protected ResourceReference getCSS() {
return CSS;
}
@Override
protected ResourceReference getNodeIcon(TreeNode node) {
if (node.isLeaf() == true) {
return documentIcon;
} else {
return folderIcon;
}
}
}
The CSS for this particular component is very finicky because they use a single image and image-offsets for all the lines connecting the tree, so I recommend copying their whole CSS file (you can get it from the source files) and then adjusting it. Or, if you don't want to make extensive changes you may want to not override getCSS() at all and instead add your CSS resource in the constructor.
The really truly super lame part is that TreeTable inserts an invisible div at the top of each table, so the :first-child pseudo class can't be used to select your item, or at least, I cannot seem to make it work. So you will still need to override populateTreeItem(). Something like:
boolean first = true;
@Override
protected void populateTreeItem(WebMarkupContainer container, int level) {
super.populateItem(container, level);
if(first) {
container.add(new SimpleAttributeModifer("class", "first"));
first = false;
}
}
and then in your CSS,
.first {font-color: red; font-style: italic;}