Ocean studio-website construction expert: vs. net-ASP. NET-tooltip per node in ASP. NET Treeview control

Source: Internet
Author: User
Synopsis:

Microsoft's Treeview webcontrol does not have a tooltip which works on a per node level. Here are two solutions to the problem.

Solution: The first and easiest method is to put an <acronym> tag around the text in any node for which you want a tooltip:
 
Me. treeview1.nodes (0). Text = "<acronym Title =" "This is the tooltip"> "& _" this is the node text </acronym>"

Another method is to modify the HTC file for the Treeview control which shoshould be located in a webctrl_client folder under the wwwroot folder.
Replace:

 
If (nodeclass = "parent" & element. getattribute ("showtooltip ")! = False) accessanchor. Title = textnode. innertext + ":" + l_strtooltip_text;

With:

VaR tooltiptext = El. getattribute ("nodedata"); // If (nodeclass = "parent" & element. getattribute ("showtooltip ")! = False) if (tooltiptext! = NULL) {accessanchor. Title = tooltiptext ;}

With this replacement the nodedata will be displayed a The tooltip.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.