I am using ExtJs 4.1.1. I have a disabled textfield. When i move the mouse over the textfield, i get 'Ext.fly is null' JS error.This happenes only when the field is disabled. Please help.
Ext.onReady(function () {
Ext.create('Ext.window.Window', {
layout: 'anchor',
minHeight: 60,
items: [{
xtype: 'textfield',
anchor: '100%',
disabled: true
}]
}).show();
});