i have some interesting question about ExtJS framework.
for example, window object in extJS have config option: 'onESC' (some events, when esc key down), and another properties.
I need dynamically loading this property changing (change it on my server and put there).
i need some method, for example, "set" or analog for overloading onESC and all properties of my window object.
--
var window1 = Ext.create("Ext.Window", {.... some config here ....});
window1.show();
--
so, how change all properties of this object after construction??
has anyone any solution?