如何在extjs4中增加MessageBox中按钮的宽度;我有很长的标题/文字放在按钮上。
有全局属性minButtonWidth但是为应用程序中的所有按钮设置了但我需要在特定消息上使用长按钮。
答案 0 :(得分: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
});