Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / desktop / BogusMenuModule.js
diff --git a/examples/desktop/BogusMenuModule.js b/examples/desktop/BogusMenuModule.js
new file mode 100644 (file)
index 0000000..3fc5dbe
--- /dev/null
@@ -0,0 +1,34 @@
+/*!
+* Ext JS Library 4.0
+* Copyright(c) 2006-2011 Sencha Inc.
+* licensing@sencha.com
+* http://www.sencha.com/license
+*/
+
+Ext.define('MyDesktop.BogusMenuModule', {
+    extend: 'MyDesktop.BogusModule',
+
+    init : function() {
+
+        this.launcher = {
+            text: 'More items',
+            iconCls: 'bogus',
+            handler: function() {
+                return false;
+            },
+            menu: {
+                items: []
+            }
+        };
+
+        for (var i = 0; i < 5; ++i) {
+            this.launcher.menu.items.push({
+                text: 'Window '+(++windowIndex),
+                iconCls:'bogus',
+                handler : this.createWindow,
+                scope: this,
+                windowId: windowIndex
+            });
+        }
+    }
+});
\ No newline at end of file