0

ExtJs 4で作成したカスタムウィンドウがあり、Internet Explorer 9を使用して閉じるのが難しいことがわかりました。ウィンドウの右上にあるxボタンを使用してウィンドウを閉じようとしましたが、ほとんどの場合機能しません。 。それはクロムと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);
   }
});
4

0 に答える 0