navajo
20 May 2010, 10:50 AM
Hello, is it possible to remove a function that was specified for Ext.onReady? For example if I had something like:
var x = new function(){
//do stuff
}
Ext.onReady(x);
then can I do something like
if(some condition){
Ext.onReadyRemove(x);
}
And I don't have control over function x, so I can't do anything inside of it to prevent it from executing. I have to remove it from the onReady queue
var x = new function(){
//do stuff
}
Ext.onReady(x);
then can I do something like
if(some condition){
Ext.onReadyRemove(x);
}
And I don't have control over function x, so I can't do anything inside of it to prevent it from executing. I have to remove it from the onReady queue