このメニューでは、ボタンのサイズを変更したいのですが、いくつかのコードを試しましたが、機能しません。ボタンの高さと幅を変更するには、以下のコードで何をする必要がありますか?extjsのボタンサイズを変更するには
listeners: {
afterrender: function() {
var menu = Ext.ComponentQuery.query('grid')[0].headerCt.getMenu();
menu.add([{
text: 'Search',
iconCls: 'x-fa fa-home',
handler: function() {
console.log("Search Item");
}
},{
xtype: 'textfield',
fieldLabel : 'Filter By',
width: 300,
height: 20
},{
xtype: 'button',
fieldLabel : 'Filter By',
text : 'Ok',
width: 15,
height:25,
maxLength: 10,
enableToggle: true
} ,{
xtype: 'button',
text : 'Cancel',
width: 15,
height:25,
maxLength: 10,
enableToggle: true
}
]);
}
}
フィドルを与えて同じものを表示 – Tejas
@ Tejas1991 [フィドル](https://fiddle.sencha.com/#view/editor&fiddle/27qc) –
ボタンの高さはどれくらいですか? – Tejas