tab-win.js
Upload User: snow1005
Upload Date: 2015-11-10
Package Size: 3151k
Code Size: 1k
Category:

Ajax

Development Platform:

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.TabWindow = Ext.extend(Ext.app.Module, {
  9. moduleType : 'demo',
  10.     moduleId : 'demo-tabs',
  11.     menuPath : 'StartMenu',
  12. launcher : {
  13.         iconCls: 'tab-icon',
  14.         shortcutIconCls: 'demo-tab-shortcut',
  15.         text: 'Tab Window',
  16.         tooltip: '<b>Tab Window</b><br />A window with tabs'
  17.     }
  18. });