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
455
Unable to change width of the tooltip
posted

I amusing the tool tip event  iggridtooltipstooltipshowing to show an image in the tooltip.

Everything works fine in IE9 but in IE8 the container is smaller than the image.

I have the following code which works fine for the positioning and height but the width never gets changed. Any ideas?(

$('#GraphGrid_tooltips').css('left', args.owner.mouseX + 10).css('top', args.owner.mouseY + 10);

                            $('#GraphGrid_tooltips').html(data[0]);

                            $('#GraphGrid_tooltips').height( $('#dialogImage').height() +5 );

                            $('#GraphGrid_tooltips').width( $('#dialogImage').width() +5 );

 

thanks

 

J