I have a simple text box that I would like to have display a tool tip when the mouse is hovered over it.
I have included the desired text in the object's Tool Tip section (under accessibility), but the tool tip does not display.
The tool tip has worked for other objects that I have worked with, but never works with text boxes.
I have included the very basic form for reference.
Thank you
Solved! Go to Solution.
Views
Replies
Total Likes
Th eonly way to get the tooltip is if you have an input field. Even if I have the input field as readOnly the tooltip will not appear as there is no input for the user. So your only option is the single obejct with the text being the caption. The tooltip will appear when they hover over the input portion of the box and the text portion.
Paul
Views
Replies
Total Likes
The object you want the tool tip to be in must be editable by the end-user, otherwise the tool tip won't be displayed.
Try to check if that is the case.
The object in question is a static text box followed by a lengthy text entry field.
Would it be wiser to combine the text box and text field into one object, with the text box now as a caption?
If that is the case, I would still prefer that the tool tip only appear if the mouse is over the caption portion.
Another idea would be to change the text box into a text entry field, but make the entry portion invisible/nearly invisible.
What does the voice of experience have to say?
Views
Replies
Total Likes
Th eonly way to get the tooltip is if you have an input field. Even if I have the input field as readOnly the tooltip will not appear as there is no input for the user. So your only option is the single obejct with the text being the caption. The tooltip will appear when they hover over the input portion of the box and the text portion.
Paul
Views
Replies
Total Likes
You can have 2 text boxes, one for the user input (no caption) other for the label (here the input section is not visible because you'll set the width to 0). This way you can get the tool tip on the label only. For the end user this will be transparent.