Event.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:1k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.Direct.Event = function(config){
  2.     Ext.apply(this, config);
  3. }
  4. Ext.Direct.Event.prototype = {
  5.     status: true,
  6.     getData: function(){
  7.         return this.data;
  8.     }
  9. };
  10. Ext.Direct.RemotingEvent = Ext.extend(Ext.Direct.Event, {
  11.     type: 'rpc',
  12.     getTransaction: function(){
  13.         return this.transaction || Ext.Direct.getTransaction(this.tid);
  14.     }
  15. });
  16. Ext.Direct.ExceptionEvent = Ext.extend(Ext.Direct.RemotingEvent, {
  17.     status: false,
  18.     type: 'exception'
  19. });
  20. Ext.Direct.eventTypes = {
  21.     'rpc':  Ext.Direct.RemotingEvent,
  22.     'event':  Ext.Direct.Event,
  23.     'exception':  Ext.Direct.ExceptionEvent
  24. };