REQUIRED INFORMATION
Ext version tested:
Browser versions tested against:
- Ext 4.1-rc1 (nightly build 2012-03-03)
DOCTYPE tested against:
- IE7/9
- FF10.0.2
Description:
- <!DOCTYPE html>
Steps to reproduce the problem:
- It seems that there ist a problem with Ext.widget functionality. If you try to get an instance of a widget, you get a "config is undefined" JS error.
Get an instance of a User defined widget (e.g. User window).
Test Case:
If I call
without config, a script error appears saying config is undefined.Code:var myWindow = Ext.widget('userkontrolleupload')
If I call
no script error appears. Everything ok.Code:var myWindow = Ext.widget('userkontrolleupload', {})