how to use Tool tip with both text and title when xtype is actioncolumn in Ext.grid.Panel.

link|improve this question
feedback

1 Answer

You can put html into tooltip. Example:

{
    xtype: 'actioncolumn',
    width: 50,
    items: [{
        icon   : '../shared/icons/fam/delete.gif',
        tooltip: '<h3>Title</h3>Text text text',
        handler: function(grid, rowIndex, colIndex) {}
    }]
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.