or
Hi,
I need to remove an hyperlink look from my tree nodes. Tryed TreeNodeOver style like "text-decoration: none". However it is not working.
I used the below css code on aspx page:
<style type="text/css">
.myNodeHoveredCss .rtIn
{
text-decoration: none !important;
}
.myNodeSelectedCss .rtIn
{
text-decoration: none !important;
}
</style>
Code behind used below line:
stNode.HoveredCssClass = "myNodeHoveredCss";
Can you please tell me how to remove Hyperlink look from tree node?.


protected void SetSkins(string colorScheme) { List<Control> RadControls = new List<Control>(); LoopControls(this.Page.Controls, ref RadControls); foreach (Control c in RadControls) { ((RadControl)c).Skin = colorScheme; } } public void LoopControls(ControlCollection controls, ref List<Control> RadControls) { string output = string.Empty; foreach (Control control in controls) { if (!string.IsNullOrEmpty(control.ID) && control.ID.StartsWith("Rad")) { RadControls.Add(control); } LoopControls(control.Controls, ref RadControls); } }