100% found this document useful (1 vote)
453 views

Add Tooltip On Side Navigation Menu Oracle APEX

This document provides steps to add tooltip functionality to a tree view component. The steps are to create a dynamic action on page load to execute JavaScript code that sets the tooltip option on the tree view to return the node label, and sets the tooltip items option to apply to elements with a specific class.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
453 views

Add Tooltip On Side Navigation Menu Oracle APEX

This document provides steps to add tooltip functionality to a tree view component. The steps are to create a dynamic action on page load to execute JavaScript code that sets the tooltip option on the tree view to return the node label, and sets the tooltip items option to apply to elements with a specific class.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

There are simple steps to achieve this tool-tip functionality:

1.In Global Page, Create a Dynamic Action on Page Load.

2.Select Action as “Execute JavaScript Code” and paste the below code.

$("#t_TreeNav").treeView("option", "tooltip", {
content: function(cb, node) {
return node.label;
}
} );
$("#t_TreeNav").tooltip("option", "items", ".a-TreeView-content");

You might also like