我有一个使用ExtJs 4创建的自定义窗口,我发现使用Internet Explorer 9关闭它的一些困难。我尝试使用窗口右上方的x按钮关闭窗口,而且大多数时候它都没有不行。它在chrome和firefox中运行良好。 这是代码:
Ext.define('Mainstay.view.import.Window', {
extend: 'Ext.window.Window',
alias : 'widget.importWindow',
title: 'Import Records',
layout:'fit',
height: 590,
width: 900,
modal: true,
autoload: true,
initComponent: function(){
this.callParent(arguments);
}
});
有人遇到过这个问题吗?