I'm trying to get my head around createCallback but i'm getting a bit confused with it, i've assumed that it is possible to use createCallback to apply a callback to ANY function you create?
So the following is how i think it works?
Am i correct? or way off the mark?!Code:function shout(msg){
Ext.Msg.alert('ALERT!', msg);
}
function run(){
ds.load();
ds.on('load', function(){ds.getAt(0)})
}
run().createCallback(shout('I wish i understood this'))
