How to add Tooltip under Label section of a Web Designer Module

Hi Folks,

I need to understand the process to add Tooltip under Label section of a Web Designer Module.

Currently, in web portal while raising any request, the form field (Example: Business Description) shows the same name while hovering the cursor over it.

We need to add some details for user to view whenever they hover over the form fields.

Parents
  • Hello,

    This is one way that I was able to get working to add a ToolTip to a label within Web Designer.

    1. Find the Label you want the ToolTip on and check the "Extend Properties" box, and document the "Control ID"
    2. For the Extended Properties now under the Label, right-click on "Extended Properties" and add a new Code Snippet
    3. Add the code below, but replace Label1 with the name from the Control ID captured in step 1

    Label1.ToolTip = "Test";


    I hope this is able to help!

Reply
  • Hello,

    This is one way that I was able to get working to add a ToolTip to a label within Web Designer.

    1. Find the Label you want the ToolTip on and check the "Extend Properties" box, and document the "Control ID"
    2. For the Extended Properties now under the Label, right-click on "Extended Properties" and add a new Code Snippet
    3. Add the code below, but replace Label1 with the name from the Control ID captured in step 1

    Label1.ToolTip = "Test";


    I hope this is able to help!

Children
No Data