$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
ToolTip Manager in ASP.NET AJAX
Home > How to > ToolTip Manager

Quite similar to Kettic ToolTip UI control for ASP.NET AJAX, ToolTip Manager are also built to create tooltip with a variety of content options, such as user specified third party controls or other ASP.NET components, etc. As the difference, ToolTip is used to create a single tooltip element, while ToolTip Manager is designed to a single tooltip for multiple elements.
Apart from this ToolTip Manager user manual, there are also other options, through which you can create a tooltip and customize it further according to your requirements.

ToolTip Manager Scenarios

In this section, we will present to you three kinds of scenarios in which you can use the ToolTip Manager. The first one is when web developers would like to add tooltips for all the HTML elements within a web page. In this case, a web programmer usually has already created a web page which contains many tooltips that should be converted to a nice looking appearance.
In this section, we will present to you three kinds of scenarios in which you can use the ToolTip Manager. The first one is when web developers would like to add tooltips for all the HTML elements within a web page. In this case, a web programmer usually has already created a web page which contains many tooltips that should be converted to a nice looking appearance.
And the third scenario is when web developers want to add tooltips with dynamic text content, which are obtained from the server. You can also use the AjaxUpdate event to populate tooltips with content from server at run time.

ToolTip Target Control Collection

ToolTip Manager also provides a ToolTip target control collection, which includes a complete list of IDs for all the server controls that a tooltip need to be added to. Without user specification, the ToolTip Manager will take it that all the included IDs are actually server ID for corresponding target controls. However, if this is not the case, like some IDs are actually client side, you can specify that by setting true to the IsClientID property.
This can be achieved declaratively on the target web page, or you can do this in the code behind, since we have provided you with complete Visual C# as well as Visual Basic .NET sample codes in the demo page.

ToolTip Content Load on Demand

ToolTip Manager for Kettic ToolTip UI control for ASP.NET AJAX allows web developers to load tooltip content on demand. Right now we provide two kinds of methods to achieve that.
The first method is for you to load the required content with ASP.NET AJAX. Users can easily configure the OnAjaxUpdate event so that once a user moves the mouse over a target element, corresponding tooltips shall appear. This event is extremely useful when the tooltip content / text comes from the server or database.
Alternatively, web programmers can do this by loading your tooltip content through web service. Using this method, every time a tooltip that is controlled by ToolTip Manage need to display, a call to the web service is made. You can set the path and name for the web service through the WebServiceSettings.

ToolTip Manager for AJAX UpdatePanel

Last but not least, ToolTip Manager provides perfect integration into AJAX UpdatePanels. If the UpdatePanel has played a part for a certain AJAX request, web developers can be free to update the target control collection correspondingly.
ASP.NET AJAX UI Controls