gridpanel のデータにツールチップを追加したいと考えています。ツールチップ パネルにマップを配置したいのですが、静的マップの幅が 600px で、ツールチップ パネルからはみ出します。以下のコードを使用しましたが、正常に動作しますが、ツールチップに幅を設定できません。どのようにできるのか?
this.renderToolTip = function(argVal, metadata, record, rowIndex, colIndex, store)
{
var toolTipImg = '<img src="http://maps.googleapis.com/maps/api/staticmap?markers=color:green%7C' + record.data.latitude + ',' + record.data.longtitude + '&zoom=15&size=600x200&sensor=false" />';
var title = record.data.title;
return '<div ext:qtitle="' + title + '" ext:qtip="' + toolTipImg + '">' + argVal + '</div>';
};