我在 extjs4 工作。我认为=
我有这个代码=
Ext.create('widget.window',{
bodyPadding : 15,
modal: true,
closeAction: 'destroy',
resizable:false,
width : 400,
height : 200,
config: {
record:''
},
items: [{
xtype: 'boxselect',
height: 30,
itemId: 'copy-to-compaign',
queryMode: 'local',
store:store,
width: 250,
displayField: 'name',
valueField: 'id',
value: '',
multiSelect: true
}],
buttons:[
{
xtype : 'linkbutton',
margin:'50 10 10 10',
},{
cls:'addBtnIcon',
padding:'10 10 10 10',
height: 50,
width: 90,
]
});
我想减小底部按钮部分的大小。那么如何在extjs4中做到这一点