closeAction: 'show',有这个值吗??closeAction: 'hide',
试试这个

解决方案 »

  1.   

    var c_window = new Ext.Window({
            title: '报表',
            width: 1020,
            height: 520,
            plain: true,
            closeAction: 'hide', 
            defaults: {
                anchor: '95%'
            },
            items: [c_userform],
            modal: true,
            buttons: [{
                        text: '关闭',
                        handler: function(){
                            c_window.hide();
                        }
            }]
        });
    c_window.show();
      

  2.   

    推荐一下:开源人网站www.vifir.com 上面有比较全面系统的EXTJS学习资料,大家可以去看看。