ExtJs 4.1.1 を使用しています。テキストフィールドが無効になっています。マウスをテキストフィールドの上に移動すると、'Ext.fly is null' という JS エラーが発生します。これは、フィールドが無効になっている場合にのみ発生します。助けてください。
Ext.onReady(function () {
Ext.create('Ext.window.Window', {
layout: 'anchor',
minHeight: 60,
items: [{
xtype: 'textfield',
anchor: '100%',
disabled: true
}]
}).show();
});