Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当 xtype 是 Ext.grid.Panel 中的 actioncolumn 时,如何使用带有文本和标题的工具提示。
您可以将 html 放入工具提示中。例子:
{ xtype: 'actioncolumn', width: 50, items: [{ icon : '../shared/icons/fam/delete.gif', tooltip: '<h3>Title</h3>Text text text', handler: function(grid, rowIndex, colIndex) {} }] }