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