extjs工具提示问题

时间:2012-02-08 17:28:23

标签: extjs

我非常喜欢锚和鼠标和基本的tooltps http://www.extjs.com/examples/explorer.html#tooltips

如何在下面的渲染器代码中添加extjs tooltip / data-qtip?

var listView = Ext.create('Ext.grid.Panel', {
        store: mystore,
        multiSelect: true,
        viewConfig: {
            emptyText: 'No images to display'
        },
        //reserveScrollOffset: true,
    renderTo: containerEl,

        columns: [
{
            text: 'Class',
            flex: 10,
            dataIndex: 'ClassName',
            renderer: function(value, metaData, record) {
   return Ext.String.format('<a href="#" class="tooltip2">{0}<span>{0}</span></a>', value);
        }

   ]     
    });

1 个答案:

答案 0 :(得分:2)

Ext.QuickTips.init();电话后添加Ext.onReady()并在您的渲染器中添加:

metaData.attr = 'ext:qtip="your tooltip here"';