X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..HEAD:/docs/source/Event.html?ds=sidebyside diff --git a/docs/source/Event.html b/docs/source/Event.html index fe982ff1..2fbf20fa 100644 --- a/docs/source/Event.html +++ b/docs/source/Event.html @@ -1,30 +1,48 @@ -
+ +/** - * @class Ext.direct.Event + + + + +\ No newline at end of file +The source code + + + + + + +/** + * @class Ext.direct.Event * A base class for all Ext.direct events. An event is * created after some kind of interaction with the server. * The event class is essentially just a data structure - * to hold a direct response. - * - * @constructor - * @param {Object} config The config object + * to hold a Direct response. */ Ext.define('Ext.direct.Event', { - + /* Begin Definitions */ - + alias: 'direct.event', - + requires: ['Ext.direct.Manager'], - + /* End Definitions */ - + status: true, - + + /** + * Creates new Event. + * @param {Object} config (optional) Config object. + */ constructor: function(config) { Ext.apply(this, config); }, - - /** + + /** * Return the raw data for this event. * @return {Object} The data from the event */ @@ -32,4 +50,6 @@ Ext.define('Ext.direct.Event', { return this.data; } }); -