/* 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\n

Aside 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\n

Example usage:

\n\n
// 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\n
Defined By

Config options

Ext.Action
view source
disabled : Boolean

True to disable all components using this action, false to enable them (defaults to false).

\n

True to disable all components using this action, false to enable them (defaults to false).

\n
The function that will be invoked by each component tied to this action\nwhen the component's primary event is trigger...

The function that will be invoked by each component tied to this action\nwhen the component's primary event is triggered (defaults to undefined).

\n
Ext.Action
view source
hidden : Boolean

True to hide all components using this action, false to show them (defaults to false).

\n

True to hide all components using this action, false to show them (defaults to false).

\n
The CSS class selector that specifies a background image to be used as the header icon for\nall components using this ...

The CSS class selector that specifies a background image to be used as the header icon for\nall components using this action (defaults to '').

\n\n

An 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\n
Ext.Action
view source
: Object
The scope (this reference) in which the\nhandler is executed. ...

The scope (this reference) in which the\nhandler is executed. Defaults to this Button.

\n

The text to set for all components using this action (defaults to '').

\n

The text to set for all components using this action (defaults to '').

\n
Defined By

Properties

Ext.Action
view source
: Booleanprivate
private ...

private

\n

Defaults to: true

Defined By

Methods

Ext.Action
view source
new( config ) : Ext.Action
...
\n

Parameters

  • config : Object

    The configuration options

    \n

Returns

Ext.Action
view source
( comp )private
private ...

private

\n

Parameters

  • comp : Object
    \n
Ext.Action
view source
( fnName, args )private
private ...

private

\n

Parameters

  • fnName : Object
    \n
  • args : Object
    \n
Ext.Action
view source
( )
Disables all components using this action. ...

Disables all components using this action.

\n
Ext.Action
view source
( fn, scope )
Executes the specified function once for each Component currently tied to this action. ...

Executes 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.

\n

Parameters

  • fn : Function

    The function to execute for each component

    \n
  • scope : Object

    The scope (this reference) in which the function is executed. Defaults to the Component.

    \n
Ext.Action
view source
( )
Enables all components using this action. ...

Enables all components using this action.

\n
Ext.Action
view source
( args )
Executes this action manually using the handler function specified in the original config object\nor the handler funct...

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.

\n

Parameters

  • args : Mixed...

    Variable number of arguments passed to the handler function

    \n
Gets the icon CSS class currently used by all components using this action. ...

Gets the icon CSS class currently used by all components using this action.

\n
Ext.Action
view source
( )
Gets the text currently displayed by all components using this action. ...

Gets the text currently displayed by all components using this action.

\n
Ext.Action
view source
( )
Hides all components using this action. ...

Hides all components using this action.

\n
Returns true if the components using this action are currently disabled, else returns false. ...

Returns true if the components using this action are currently disabled, else returns false.

\n
Ext.Action
view source
( )
Returns true if the components using this action are currently hidden, else returns false. ...

Returns true if the components using this action are currently hidden, else returns false.

\n
Ext.Action
view source
( comp )private
private ...

private

\n

Parameters

  • comp : Object
    \n
Ext.Action
view source
( disabled )
Sets the disabled state of all components using this action. ...

Sets the disabled state of all components using this action. Shortcut method\nfor enable and disable.

\n

Parameters

  • disabled : Boolean

    True to disable the component, false to enable it

    \n
Ext.Action
view source
( fn, scope )
Sets the function that will be called by each Component using this action when its primary event is triggered. ...

Sets the function that will be called by each Component using this action when its primary event is triggered.

\n

Parameters

  • fn : Function

    The function that will be invoked by the action's components. The function\nwill be called with no arguments.

    \n
  • scope : Object

    The scope (this reference) in which the function is executed. Defaults to the Component firing the event.

    \n
Ext.Action
view source
( hidden )
Sets the hidden state of all components using this action. ...

Sets the hidden state of all components using this action. Shortcut method\nfor hide and show.

\n

Parameters

  • hidden : Boolean

    True to hide the component, false to show it

    \n
Ext.Action
view source
( cls )
Sets the icon CSS class for all components using this action. ...

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.

\n

Parameters

  • cls : String

    The CSS class supplying the icon image

    \n
Ext.Action
view source
( text )
Sets the text to be displayed by all components using this action. ...

Sets the text to be displayed by all components using this action.

\n

Parameters

  • text : String

    The text to display

    \n
Ext.Action
view source
( )
Shows all components using this action. ...

Shows all components using this action.

\n
","superclasses":[],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"Action.html#Ext-Action","filename":"Action.js"}],"linenr":1,"members":{"property":[{"tagname":"property","owner":"Ext.Action","meta":{"private":true},"name":"isAction","id":"property-isAction"}],"cfg":[{"tagname":"cfg","owner":"Ext.Action","meta":{},"name":"disabled","id":"cfg-disabled"},{"tagname":"cfg","owner":"Ext.Action","meta":{},"name":"handler","id":"cfg-handler"},{"tagname":"cfg","owner":"Ext.Action","meta":{},"name":"hidden","id":"cfg-hidden"},{"tagname":"cfg","owner":"Ext.Action","meta":{},"name":"iconCls","id":"cfg-iconCls"},{"tagname":"cfg","owner":"Ext.Action","meta":{},"name":"itemId","id":"cfg-itemId"},{"tagname":"cfg","owner":"Ext.Action","meta":{},"name":"scope","id":"cfg-scope"},{"tagname":"cfg","owner":"Ext.Action","meta":{},"name":"text","id":"cfg-text"}],"css_var":[],"method":[{"tagname":"method","owner":"Ext.Action","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.Action","meta":{"private":true},"name":"addComponent","id":"method-addComponent"},{"tagname":"method","owner":"Ext.Action","meta":{"private":true},"name":"callEach","id":"method-callEach"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"disable","id":"method-disable"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"each","id":"method-each"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"enable","id":"method-enable"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"execute","id":"method-execute"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"getIconClass","id":"method-getIconClass"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"getText","id":"method-getText"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"hide","id":"method-hide"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"isDisabled","id":"method-isDisabled"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"isHidden","id":"method-isHidden"},{"tagname":"method","owner":"Ext.Action","meta":{"private":true},"name":"removeComponent","id":"method-removeComponent"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"setDisabled","id":"method-setDisabled"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"setHandler","id":"method-setHandler"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"setHidden","id":"method-setHidden"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"setIconClass","id":"method-setIconClass"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"setText","id":"method-setText"},{"tagname":"method","owner":"Ext.Action","meta":{},"name":"show","id":"method-show"}],"event":[],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.Action","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.Action","mixins":[],"mixedInto":[]});