Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的网格面板标题的右侧添加一个按钮,但无论如何都找不到这样做。
我不想添加工具栏,因为它只是我想要添加的 1 个按钮。
查看面板的工具配置。只需将其添加到网格的配置中:
Ext.create('Ext.grid.Panel', { // ... tools:[ { type:'help', tooltip: 'Get Help', handler: function(event, toolEl, panel){ // show help here } }], // ... });
这是演示。