0

How do I increase width of button in MessageBox in extjs4; I have long caption/text to put in button.

There is global property minButtonWidth but that is set for all buttons in application but I need long button on a specific message.

4

1 回答 1

0

尝试使用 minButtonWidth 配置显示这样的消息框:

Ext.Msg.show({
    title: 'Address',
    msg: 'Please enter your address:',
    width: 300,
    buttons: Ext.Msg.OKCANCEL,
    multiline: true,
    fn: saveAddress,
    animateTarget: 'addAddressBtn',
    icon: Ext.window.MessageBox.INFO,
    ...
    minButtonWidth: 100
});
于 2013-08-22T20:23:23.680 回答