danielleng
29 Nov 2011, 10:43 PM
When I drag an Ext.window.Window it sometimes freezes/hangs and I can't close or minimize it anymore. It just grays out. Anyone experienced this before ?
Here's my declaration... nothing fancy. Just simple stuff:
Ext.define('Portal.view.user.form1' ,{
extend: 'Ext.window.Window',
alias : 'widget.form1',
title : 'Input Details',
layout: "fit",
height: 200,
width: 300,
autoShow: true,
resizable: true,
minimizable: true,
closable: false,
initComponent: function(){
this.items = this.buildItems();
this.buttons = this.buildButtons();
this.callParent(arguments);
},
......other functions......
29687
Here's my declaration... nothing fancy. Just simple stuff:
Ext.define('Portal.view.user.form1' ,{
extend: 'Ext.window.Window',
alias : 'widget.form1',
title : 'Input Details',
layout: "fit",
height: 200,
width: 300,
autoShow: true,
resizable: true,
minimizable: true,
closable: false,
initComponent: function(){
this.items = this.buildItems();
this.buttons = this.buildButtons();
this.callParent(arguments);
},
......other functions......
29687