For some reason with the way we structured the page, the tooltip is not working.
main.html
<div class="main-navigation"> <div rt-tool-menus-"menus" selected="selectedMenus" tooltip="{{appController.displayName}}"></div> </div>
controller.js
angular.module('abc') .controller('abcController',..... self.menus=[ { heading: 'Head1', active: false, route: 'head1' }, { heading: 'Head2', active: false, route: 'head2' tooltip: 'head2' // tried, doesnt work }]; self.selectedMenus = []' self.tooltip = appConfig.displayName; // tried not working
what would be the right approach to show tooltip with the correct header, and location?