I am trying to show a menu in a grid panel. I have a actioncolumn to display an icon and i want apply an effect... when the mouse is over that icon, a menu will be displayed.
How i can do this in extjs 5?
My actioncolumn is this:
{
xtype: 'actioncolumn',
width: 70,
items: [{
icon: 'resources/images/icons/cog_edit.png', // Use a URL in the icon config
tooltip: 'Edit',
handler: function(grid, rowIndex, colIndex, a, b, c) {
}
}]
}