We are using wicket LinkTree. Once the tree is constructed and rendered on the page, we can dynamically add new nodes to the tree in our application. When a new node is added, we'd like to show the newly added node with a different color (say red).
One approach we took (but didn't work) is the following. We extend the LinkTree class and override the newNodeComponent method as follows.
@Override
protected Component newNodeComponent(String id, IModel<Object> model) {
return new LinkIconPanel(id, model, TalepTreeForTTBina.this) {
private static final long serialVersionUID = 4518741854057038753L;
@Override
protected void onNodeLinkClicked(Object node, BaseTree tree, AjaxRequestTarget target)
{ . . . . . .
Then we add an html attribute (class) to this LinkIconPanel thing. After that, our plan was to write a jquery function to look into that class on the tree, and then change the color of the < td > (or actually the < span >) tag where the text is shown. However, the final markup we get is something like the following:
< td class="myClass" . . . .>
< wicket:panel ....>
< table . . . >
< tbody . . . >
< tr . . . >
< td . . . >
< a ...>
< span > my text that I want to change the color < /span >
I have access to the outermost td tag (on the top above) but don't have access to the inner tags from my Java Wicket code. So I'm just inserting myClass to the outermost td tag from the wicket code and hoping to handle the color from the jquery side on the client. It looks like (from my css code) I can't reach to the < table> tag from jquery (or css) since there is a < wicket:panel > tag in between.
So my question is: 1. Is there a better way of changing a color of a LinkTree node? 2. If this is the way I should go, how can I reach to that < span > tag from css? I can't use RenderBodyOnly(true) since I'm not adding the tree nodes manually in my code and I cannot access the node (the item to be added as a node). LinkTree does that for me.
I'd appreciate any help. Thanks.