3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
\r
4 <title>The source code</title>
\r
5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
\r
6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
\r
8 <body onload="prettyPrint();">
\r
9 <pre class="prettyprint lang-js">Ext.Direct.Event = function(config){
\r
10 Ext.apply(this, config);
\r
12 Ext.Direct.Event.prototype = {
\r
14 getData: function(){
\r
19 Ext.Direct.RemotingEvent = Ext.extend(Ext.Direct.Event, {
\r
21 getTransaction: function(){
\r
22 return this.transaction || Ext.Direct.getTransaction(this.tid);
\r
26 Ext.Direct.ExceptionEvent = Ext.extend(Ext.Direct.RemotingEvent, {
\r
31 Ext.Direct.eventTypes = {
\r
32 'rpc': Ext.Direct.RemotingEvent,
\r
33 'event': Ext.Direct.Event,
\r
34 'exception': Ext.Direct.ExceptionEvent
\r