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
Oops - finally found that the maxWidth was set - changed it and all hunky dory