如果在Ext.grid.Panel中xtype为actioncolumn时如何使用带有文本和标题的工具提示。
答案 0 :(得分: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) {}
}]
}