3 <title>The source code</title>
\r
4 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
\r
5 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
\r
7 <body onload="prettyPrint();">
\r
8 <pre class="prettyprint lang-js">Ext.Direct.Event = function(config){
\r
9 Ext.apply(this, config);
\r
11 Ext.Direct.Event.prototype = {
\r
13 getData: function(){
\r
18 Ext.Direct.RemotingEvent = Ext.extend(Ext.Direct.Event, {
\r
20 getTransaction: function(){
\r
21 return this.transaction || Ext.Direct.getTransaction(this.tid);
\r
25 Ext.Direct.ExceptionEvent = Ext.extend(Ext.Direct.RemotingEvent, {
\r
30 Ext.Direct.eventTypes = {
\r
31 'rpc': Ext.Direct.RemotingEvent,
\r
32 'event': Ext.Direct.Event,
\r
33 'exception': Ext.Direct.ExceptionEvent
\r