0

当 xtype 是 Ext.grid.Panel 中的 actioncolumn 时,如何使用带有文本和标题的工具提示。

4

1 回答 1

0

您可以将 html 放入工具提示中。例子:

{
    xtype: 'actioncolumn',
    width: 50,
    items: [{
        icon   : '../shared/icons/fam/delete.gif',
        tooltip: '<h3>Title</h3>Text text text',
        handler: function(grid, rowIndex, colIndex) {}
    }]
}
于 2012-02-10T07:26:22.807 回答