当前位置: 代码迷 >> Web前端 >> Ext alert 设立宽度
  详细解决方案

Ext alert 设立宽度

热度:780   发布时间:2012-11-03 10:57:43.0
Ext alert 设置宽度

Ext.Msg.show({
                                title : '错误提示',
                                msg : '添加失败',
                                buttons : Ext.Msg.OK,
                                minWidth:300,//设置宽度
                                fn : function() {
                                    unfield.focus(true);
                                    btn.enable();
                                },
                                icon : Ext.Msg.ERROR
                            });
  相关解决方案