/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 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. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_Action({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
An Action is a piece of reusable functionality that can be abstracted out of any particular component so that it\ncan be usefully shared among multiple components. Actions let you share handlers, configuration options and UI\nupdates across any components that support the Action interface (primarily Ext.Toolbar, Ext.Button\nand Ext.menu.Menu components).
\n\n\nAside from supporting the config object interface, any component that needs to use Actions must also support\nthe following method list, as these will be called as needed by the Action class: setText(string), setIconCls(string),\nsetDisabled(boolean), setVisible(boolean) and setHandler(function).
\n\n\nExample usage:
// Define the shared action. Each component below will have the same\n// display text and icon, and will display the same message on click.\nvar action = new Ext.Action({\n text: 'Do something',\n handler: function(){\n Ext.Msg.alert('Click', 'You did something.');\n },\n iconCls: 'do-something',\n itemId: 'myAction'\n});\n\nvar panel = new Ext.Panel({\n title: 'Actions',\n width: 500,\n height: 300,\n tbar: [\n // Add the action directly to a toolbar as a menu button\n action,\n {\n text: 'Action Menu',\n // Add the action to a menu as a text item\n menu: [action]\n }\n ],\n items: [\n // Add the action to the panel body as a standard button\n new Ext.Button(action)\n ],\n renderTo: Ext.getBody()\n});\n\n// Change the text for all components using the action\naction.setText('Something else');\n\n// Reference an action through a container using the itemId\nvar btn = panel.getComponent('myAction');\nvar aRef = btn.baseAction;\naRef.setText('New text');\n
\n\nTrue to disable all components using this action, false to enable them (defaults to false).
\nTrue to disable all components using this action, false to enable them (defaults to false).
\nThe function that will be invoked by each component tied to this action\nwhen the component's primary event is triggered (defaults to undefined).
\nThe CSS class selector that specifies a background image to be used as the header icon for\nall components using this action (defaults to '').
\n\nAn example of specifying a custom icon class would be something like:\n
\n\n\n// specify the property in the config for the class:\n ...\n iconCls: 'do-something'\n\n// css class that specifies background image to be used as the icon image:\n.do-something { background-image: url(../images/my-icon.gif) 0 6px no-repeat !important; }\n
\n\nDisables all components using this action.
\nExecutes the specified function once for each Component currently tied to this action. The function passed\nin should accept a single argument that will be an object that supports the basic Action config/method interface.
\nThe function to execute for each component
\nThe scope (this
reference) in which the function is executed. Defaults to the Component.
Executes this action manually using the handler function specified in the original config object\nor the handler function set with setHandler
. Any arguments passed to this\nfunction will be passed on to the handler function.
Variable number of arguments passed to the handler function
\nGets the icon CSS class currently used by all components using this action.
\nGets the text currently displayed by all components using this action.
\nReturns true if the components using this action are currently disabled, else returns false.
\nReturns true if the components using this action are currently hidden, else returns false.
\nSets the function that will be called by each Component using this action when its primary event is triggered.
\nThe function that will be invoked by the action's components. The function\nwill be called with no arguments.
\nThe scope (this
reference) in which the function is executed. Defaults to the Component firing the event.
Sets the icon CSS class for all components using this action. The class should supply\na background image that will be used as the icon image.
\nThe CSS class supplying the icon image
\n