Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add help button to Extjs gridpanel header

I want to add a button to the right hand side of my gridpanel header but can't find anyway of doing so.

I don't want to add a toolbar since it's only 1 button I want to add.

like image 453
pm13 Avatar asked Sep 14 '11 08:09

pm13


1 Answers

Check out the panel's tools config. Simply add it to grid's config:

Ext.create('Ext.grid.Panel', {
    // ...
    tools:[
    {
        type:'help',
        tooltip: 'Get Help',
        handler: function(event, toolEl, panel){
            // show help here
        }
    }],
    // ...
});

Here is demo.

like image 53
Molecular Man Avatar answered Nov 10 '22 16:11

Molecular Man