Hi guys,

I am using GWT's Treepanel and I need to set different icons for my
TreeNodes.
I tried using TreeNode.setIconCls(String) but it doesn't seem to work.
My style names are contained in a CSS file and I am also using these
style names
in setting the icons of menu items (using setIconCls()) and they work
(the icons appear on the menu items).

Below are some code snippets:

Java:
TreeNode configNode = new TreeNode("+ New");
configNode.setUserObject(-1L);
configNode.setIconCls("new");
parentNode.appendChild(configNode);

CSS:
.new    {background-image:url(../images/payroll/new.png);}

I don't know what I'm missing here -- the codes I've seen in the GWT
demo are using the same implementation (setIconCls).

Thank you in advance. :)

Best regards,
Mark
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to