aspnet-118544-components-docking-and-popups-hint-control.md
The DevExpress ASP.NET Hint Control (ASPxHint) allows you to generate a hint message for a UI element on a web page. The hint is displayed in a box with an arrow that targets the specified UI element when users hover over this element.
The following image illustrates the ASPxHint ‘s visual elements:
Customizable Content
Customizable Trigger Action
Animation
Positioning
Customizable Size
Client-side events allow you to respond to a hint’s visibility state changes.
The client-side API allows you to register a hint’s functionality, show and hide a hint, specify its position relative to other HTML elements and change its content.
Step 1. Create a new website or open an existing one in Visual Studio. Locate the ASPxHint item in the Visual Studio toolbox and drop it onto the form.
Step 2. Add a button to a form with the specified style settings. A hint is displayed when a user moves the mouse pointer over this button.
Step 3. Set the hint’s ASPxHint.TargetSelector and ASPxHint.Content properties to specify the web page element(s) for which the hint displays and the hint’s content, respectively.
Step 4. Run the website to see the result.
Note
Use the ASPxClientHint.Update method to update the ASPxHint’s target UI elements as the hint doesn’t automatically inspect the changes in the DOM tree if any element has been removed or added on the page.
You can see ASPxHint in action in the following online demos:
See Also