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!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Tooltip
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 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 !