2

我想将工具提示添加到我的网格面板的数据中。我想把地图放在工具提示面板上,我明白了,但是我的静态地图的宽度是 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>';
};
4

3 回答 3

1

试试这个:

...

ext:qwidth="100"

...

于 2012-12-17T12:21:10.563 回答
1

对于 ExtJs4,这里是属性:

 tagConfig : {
        namespace : "data-",
        attribute : "qtip",
        width : "qwidth",
        target : "target",
        title : "qtitle",
        hide : "hide",
        cls : "qclass",
        align : "qalign",
        anchor : "anchor"
    },

不要忘记致电:

Ext.tip.QuickTipManager.init();

在您的代码开始时。

使用示例:

meta.tdAttr = "data-qtip='texttttt' data-qtitle='title' data-qwidth=140"; 
于 2013-07-03T12:03:35.110 回答
1

m.tdAttr = 'data-qwidth="160" data-qtip="'

于 2013-07-25T07:24:17.733 回答