Hi !
How can we add tooltip to objects when the user hovers an object to get more details about the object ?
Thanks for ur help !
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Tooltip
-
- nuBuilder Team
- Posts: 4292
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: Tooltip
Hi,
This can be done by adding some Javascript code in the form's Custom Code field:
Replace YOUR_OBJECT_ID with an object id
This can be done by adding some Javascript code in the form's Custom Code field:
Code: Select all
if (nuFormType() == 'edit') {
$('#label_YOUR_OBJECT_ID').attr('title', 'Some information about this object');
}
Re: Tooltip
Hi, Kev1n!
Thank you for reply.
Unfortunately, I do not have any experience in js.
I assumed that it was as simple as [Tip] Increase nuBuilder's font size
viewtopic.php?t=11595
It would be nice if the function nuSetToolTip has a parameter to change font size,
or be able to adjust the font of the tooltip through the Setup-> Style.
Thanks for help !
Thank you for reply.
Unfortunately, I do not have any experience in js.
I assumed that it was as simple as [Tip] Increase nuBuilder's font size
viewtopic.php?t=11595
It would be nice if the function nuSetToolTip has a parameter to change font size,
or be able to adjust the font of the tooltip through the Setup-> Style.
Thanks for help !