From http://developer.yahoo.com/yui/docs/YAHOO.util.DataSourceBase.html#method_sendRequest,
you can see the oCallback is an object literal with the following properties:
success
The function to call when the data is ready.
failure
The function to call upon a response failure condition.
The problem is that it does not mention what parameters will be available to the success and failure callback functions. Although it's possible for us to use firebug/other tools to find that out, it would be easier if this info is available in the documentation.
In YUI, there are lots of times where callback functions will be used.
My question is that, is this piece of info available in yui website? If yes, where is it?