这是运行良好的代码。
Ext.Msg.show({
title: 'The title',
message: 'and some text...',
scope: this,
buttons : [
{
itemId : 'no',
text : 'Top button'
},
{
itemId : 'yes',
text : 'Bottom button'
}
],
fn: function(btn) {
if (btn == 'yes'){
//do something
}
}
});
如何垂直对齐按钮?默认情况下,它们水平排成一行。