PDA

View Full Version : ext.callback



topcoder1
13 Jul 2007, 12:06 PM
I tried to use Ext.callback but it's not working. Can't find the documentation or source code for it either, can someone enlighten me? thanks!
Ext.callback('a');

function a(){
alert('a');
}

tryanDLS
13 Jul 2007, 12:27 PM
What are you trying to? If you haven't seen doc or source, how can you just make up code?

brian.moeskau
13 Jul 2007, 1:36 PM
API docs are under the Learn section of the site.

http://extjs.com/deploy/ext/docs/index.html

Are you trying to do Function.createCallback?

http://extjs.com/deploy/ext/docs/output/Function.html#createCallback

topcoder1
13 Jul 2007, 3:07 PM
I was experimenting with a different problem and saw Ext.callback in numerous places in the code but can't find the definition of this particular function. maybe it's an inherited function from an ancestor class?

evant
13 Jul 2007, 4:42 PM
If you read the source, you'll see it's marked 'internal', which means that it's private.