我想在gridpanel标题的右侧添加一个按钮,但无论如何都无法找到。
我不想添加工具栏,因为它只是我要添加的1个按钮。
答案 0 :(得分:13)
查看面板的tools配置。只需将其添加到网格配置:
Ext.create('Ext.grid.Panel', {
// ...
tools:[
{
type:'help',
tooltip: 'Get Help',
handler: function(event, toolEl, panel){
// show help here
}
}],
// ...
});