grid-win.js
上传用户:snow1005
上传日期:2015-11-10
资源大小:3151k
文件大小:1k
源码类别:

Ajax

开发平台:

JavaScript

  1. /* This code defines the module and will be loaded at start up.
  2.  * 
  3.  * When the user selects to open this module, the override code will
  4.  * be loaded to provide the functionality.
  5.  * 
  6.  * Allows for 'Module on Demand'.
  7.  */
  8. QoDesk.GridWindow = Ext.extend(Ext.app.Module, {
  9. moduleType : 'demo',
  10.     moduleId : 'demo-grid',
  11.     menuPath : 'StartMenu',
  12. launcher : {
  13.         iconCls: 'grid-icon',
  14.         shortcutIconCls: 'demo-grid-shortcut',
  15.         text: 'Grid Window',
  16.         tooltip: '<b>Grid Window</b><br />A window with a grid'
  17.     }
  18. });