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.
gridpanel ヘッダーの右側にボタンを追加したいのですが、とにかく見つけられません。
追加したいボタンは1つだけなので、ツールバーを追加したくありません。
パネルのツール構成を確認してください。グリッドの構成に追加するだけです:
Ext.create('Ext.grid.Panel', { // ... tools:[ { type:'help', tooltip: 'Get Help', handler: function(event, toolEl, panel){ // show help here } }], // ... });
これがデモです。