Is there any way to set the CSS class for visited links? I have an inital css class, then it switches to something else for the SelectedCSSClass, but I don't see any way to set the color of the text for a visited link that is not currently selected. (It does not revert back to the original css class.)
Just so you see what I'm talking about, here's one of the nodes...
<ig:DataTreeNode NavigateUrl="mypage.aspx" Target="default_content" Text="Reports" CssClass="MyNodeCSS" SelectedCssClass="MySelectedNodeCSS">
</ig:DataTreeNode
Hello allison_musche,
Thank you for posting in our forum.
You can set a default style for the tree via the CssClass property and add different settings depending on the state of the nodes. For example if you set CssClass="MyNodeCSS" for a node you can then define separate classes for the different states of that node. For example:
.MyNodeCSS
{
color: Red;
}
. MyNodeCSS:visited
color: Green;
.MyNodeCSS:hover
color: Purple;
So the visited links will appear green.
Let me know if you have any questions.
Best Regards,
Maya Kirova
Developer Support Engineer II
Infragistics, Inc.
http://ko.infragistics.com/support