Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / examples / menu / actions.js
index 4575d90..03470a8 100644 (file)
@@ -1,67 +1,80 @@
-/*\r
- * Ext JS Library 2.2.1\r
- * Copyright(c) 2006-2009, Ext JS, LLC.\r
- * licensing@extjs.com\r
- * \r
- * http://extjs.com/license\r
- */\r
-\r
-Ext.onReady(function(){\r
-    // The action\r
-    var action = new Ext.Action({\r
-        text: 'Action 1',\r
-        handler: function(){\r
-            Ext.example.msg('Click','You clicked on "Action 1".');\r
-        },\r
-        iconCls: 'blist'\r
-    });\r
-\r
-\r
-    var panel = new Ext.Panel({\r
-        title: 'Actions',\r
-        width:600,\r
-        height:300,\r
-        bodyStyle: 'padding:10px;',     // lazy inline style\r
-\r
-        tbar: [\r
-            action, {                   // <-- Add the action directly to a toolbar\r
-                text: 'Action Menu',\r
-                menu: [action]          // <-- Add the action directly to a menu\r
-            }\r
-        ],\r
-\r
-        items: [\r
-           new Ext.Button(action)       // <-- Add the action as a button\r
-        ],\r
-\r
-        renderTo: Ext.getBody()\r
-    });\r
-\r
-\r
-    // Buttons added to the toolbar of the Panel above\r
-    // to test/demo doing group operations with an action\r
-    panel.getTopToolbar().add('->', {\r
-        text: 'Disable',\r
-        handler: function(){\r
-            action.setDisabled(!action.isDisabled());\r
-            this.setText(action.isDisabled() ? 'Enable' : 'Disable');\r
-        }\r
-    }, {\r
-        text: 'Change Text',\r
-        handler: function(){\r
-            Ext.Msg.prompt('Enter Text', 'Enter new text for Action 1:', function(btn, text){\r
-                if(btn == 'ok' && text){\r
-                    action.setText(text);\r
-                    action.setHandler(function(){\r
-                        Ext.example.msg('Click','You clicked on "'+text+'".');\r
-                    });\r
-                }\r
-            });\r
-        }\r
-    }, {\r
-        text: 'Change Icon',\r
-        handler: function(){\r
-            action.setIconClass(action.getIconClass() == 'blist' ? 'bmenu' : 'blist');\r
-        }\r
-    });\r
-});
\ No newline at end of file
+/*
+
+This file is part of Ext JS 4
+
+Copyright (c) 2011 Sencha Inc
+
+Contact:  http://www.sencha.com/contact
+
+GNU General Public License Usage
+This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
+
+If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
+
+*/
+Ext.require([
+    'Ext.panel.Panel',
+    'Ext.Action',
+    'Ext.button.Button',
+    'Ext.window.MessageBox'
+]);
+
+Ext.onReady(function(){
+    var action = Ext.create('Ext.Action', {
+        text: 'Action 1',
+        iconCls: 'icon-add',
+        handler: function(){
+            Ext.example.msg('Click', 'You clicked on "Action 1".');
+        }
+    });
+    
+     var panel = Ext.create('Ext.panel.Panel', {
+        title: 'Actions',
+        renderTo: document.body,
+        width: 600,
+        height: 300,
+        bodyPadding: 10,
+        dockedItems: {
+            itemId: 'toolbar',
+            xtype: 'toolbar',
+            items: [
+                action, // Add the action directly to a toolbar
+                {
+                    text: 'Action menu',
+                    menu: [action] // Add the action directly to a menu
+                }
+            ]
+        },
+        items: Ext.create('Ext.button.Button', action)       // Add the action as a button
+    });
+    
+    /*
+     * Add toolbar items dynamically after creation
+     */
+    var toolbar = panel.child('#toolbar');
+    toolbar.add('->', {
+        text: 'Disable',
+        handler: function(){
+            action.setDisabled(!action.isDisabled());
+            this.setText(action.isDisabled() ? 'Enable' : 'Disable');
+        }
+    }, {
+        text: 'Change Text',
+        handler: function(){
+            Ext.Msg.prompt('Enter Text', 'Enter new text for Action 1:', function(btn, text){
+                if(btn == 'ok' && text){
+                    action.setText(text);
+                    action.setHandler(function(){
+                        Ext.example.msg('Click','You clicked on "'+text+'".');
+                    });
+                }
+            });
+        }
+    }, {
+        text: 'Change Icon',
+        handler: function(){
+            action.setIconCls(action.getIconCls() == 'icon-add' ? 'icon-edit' : 'icon-add');
+        }
+    });
+});
+