Check the configuration of the tools panel. Just add it to the grid configuration:
Ext.create('Ext.grid.Panel', { // ... tools:[ { type:'help', tooltip: 'Get Help', handler: function(event, toolEl, panel){ // show help here } }], // ... });
Here is a demo .
source share