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>
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".