Hi, I am using RadTreeView for ASP.NET AJAX. I want to change the HoveredCssClass for the tree nodes which are created using Customerized Template while applying the "Default" skin for the rest tree nodes. What I did is: I created a css class and put it in my main .css file and in my program, I assigned the css to the tree nodes created from template. However, the HoveredCssClass doesn't see to use my stylesheet. So I tried change CssClass and SelectedCssClass as well and fount out the CssClass works, but SelectedCssClass doesn't work either. Can you help here? The following is my code snipet:
Ming
node5.NodeTemplate =
new CustomizedTemplates.MyTemplate(dr);
node5.CssClass = "MyNodeCss";
node5.HoveredCssClass = "MyNodeHoveredCss";
node5.SelectedCssClass = "MyNodeSelectedCss";
Ming