Looks like we can't reproduce the issue or there's a problem in the test case provided.
-
Sencha Premium Member
[ExtJS 4.2] frame:true has no effect on window
Ext version tested:
Browser versions tested against:
Description:
- Ext.window.Window - frame:true has no effect
Test Case:
Code:
Ext.define('TextWindow', {
extend: 'Ext.window.Window',
xtype: 'textwindow',
width: 200,
height: 200,
layout: 'auto',
bodyPadding: 20,
//does not work
frame: true,
initComponent: function () {
this.items = [{
xtype: 'form',
border: false,
items:[{
xtype: 'textfield'
},
{
xtype: 'textfield'
}]
},
{
xtype: 'form',
border: false,
items: [{
xtype: 'textfield'
},
{
xtype: 'textfield'
}]
}];
this.callParent(arguments);
}
});
-
Thanks for the report! I have opened a bug in our bug tracker.