将帮助按钮添加到Extjs gridpanel标头

时间:2011-09-14 08:45:20

标签: javascript extjs gridpanel

我想在gridpanel标题的右侧添加一个按钮,但无论如何都无法找到。

我不想添加工具栏,因为它只是我要添加的1个按钮。

1 个答案:

答案 0 :(得分:13)

查看面板的tools配置。只需将其添加到网格配置:

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

Here is demo