Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
190
entire tool tip does not display
posted

I have added a tool tip text which has lot of text for ultra web grid using java script. The tool tip does shows on mouse over but the entire text is not displayed. Is there a limitation on text for tool tips ? Is there a work around for that ? Below is my code :

<script id='igClientScript' type='text/javascript'>

function  SetToolTips(gridName)
{

 var grid = igtbl_getGridById(gridName);

 grid.MainGrid.title = "getting tool tip text here from a resource file";


}

</script>

  • 28464
    posted

    Hello,

    Yes, this is correct, but unfortunately this is a browser limitation. You can however use extensions to have custom templated tooltips, for example in MooTools or jQuery there are nice extensions that support that.

    Just search the internet for "tooltip extensions" or "jquery tooltip", "mootools tooltip".