4.0.6: LoadMask ignors target-element
REQUIRED INFORMATION
Ext version tested:
- Bug occurs in 4.0.5 and 4.0.6
- Works in 4.0.2a
Browser versions tested against:
Description:
- LoadMask ignors a given target-element
Steps to reproduce the problem:
- Create a LoadMask on a grid with a target other then the grid
The result that was expected:
- The loading-mask should cover the whole browser-window.
The result that occurs instead:
- The loading-mask covers only the grid.
Test Case:
Code:
Ext.define('Ext.ux.MyGrid',
{ extend: 'Ext.grid.Panel',
constructor: function(config)
{ Ext.applyIf(config.viewConfig,
{ loadMask: new Ext.LoadMask(Ext.getBody(),
{ msg: "My Loading text..."
})
});
this.callParent(arguments);
}
});