3 <title>The source code</title>
\r
4 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
\r
5 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
\r
7 <body onload="prettyPrint();">
\r
8 <pre class="prettyprint lang-js"><div id="cls-Ext.Action"></div>/**
\r
10 * <p>An Action is a piece of reusable functionality that can be abstracted out of any particular component so that it
\r
11 * can be usefully shared among multiple components. Actions let you share handlers, configuration options and UI
\r
12 * updates across any components that support the Action interface (primarily {@link Ext.Toolbar}, {@link Ext.Button}
\r
13 * and {@link Ext.menu.Menu} components).</p>
\r
14 * <p>Aside from supporting the config object interface, any component that needs to use Actions must also support
\r
15 * the following method list, as these will be called as needed by the Action class: setText(string), setIconCls(string),
\r
16 * setDisabled(boolean), setVisible(boolean) and setHandler(function).</p>
\r
17 * Example usage:<br>
\r
19 // Define the shared action. Each component below will have the same
\r
20 // display text and icon, and will display the same message on click.
\r
21 var action = new Ext.Action({
\r
22 {@link #text}: 'Do something',
\r
23 {@link #handler}: function(){
\r
24 Ext.Msg.alert('Click', 'You did something.');
\r
26 {@link #iconCls}: 'do-something',
\r
27 {@link #itemId}: 'myAction'
\r
30 var panel = new Ext.Panel({
\r
35 // Add the action directly to a toolbar as a menu button
\r
38 text: 'Action Menu',
\r
39 // Add the action to a menu as a text item
\r
44 // Add the action to the panel body as a standard button
\r
45 new Ext.Button(action)
\r
47 renderTo: Ext.getBody()
\r
50 // Change the text for all components using the action
\r
51 action.setText('Something else');
\r
53 // Reference an action through a container using the itemId
\r
54 var btn = panel.getComponent('myAction');
\r
55 var aRef = btn.baseAction;
\r
56 aRef.setText('New text');
\r
59 * @param {Object} config The configuration options
\r
61 Ext.Action = function(config){
\r
62 this.initialConfig = config;
\r
63 this.itemId = config.itemId = (config.itemId || config.id || Ext.id());
\r
67 Ext.Action.prototype = {
\r
68 <div id="cfg-Ext.Action-text"></div>/**
\r
69 * @cfg {String} text The text to set for all components using this action (defaults to '').
\r
71 <div id="cfg-Ext.Action-iconCls"></div>/**
\r
72 * @cfg {String} iconCls
\r
73 * The CSS class selector that specifies a background image to be used as the header icon for
\r
74 * all components using this action (defaults to '').
\r
75 * <p>An example of specifying a custom icon class would be something like:
\r
77 // specify the property in the config for the class:
\r
79 iconCls: 'do-something'
\r
81 // css class that specifies background image to be used as the icon image:
\r
82 .do-something { background-image: url(../images/my-icon.gif) 0 6px no-repeat !important; }
\r
85 <div id="cfg-Ext.Action-disabled"></div>/**
\r
86 * @cfg {Boolean} disabled True to disable all components using this action, false to enable them (defaults to false).
\r
88 <div id="cfg-Ext.Action-hidden"></div>/**
\r
89 * @cfg {Boolean} hidden True to hide all components using this action, false to show them (defaults to false).
\r
91 <div id="cfg-Ext.Action-handler"></div>/**
\r
92 * @cfg {Function} handler The function that will be invoked by each component tied to this action
\r
93 * when the component's primary event is triggered (defaults to undefined).
\r
95 <div id="cfg-Ext.Action-itemId"></div>/**
\r
96 * @cfg {String} itemId
\r
97 * See {@link Ext.Component}.{@link Ext.Component#itemId itemId}.
\r
99 <div id="cfg-Ext.Action-scope"></div>/**
\r
100 * @cfg {Object} scope The scope in which the {@link #handler} function will execute.
\r
106 <div id="method-Ext.Action-setText"></div>/**
\r
107 * Sets the text to be displayed by all components using this action.
\r
108 * @param {String} text The text to display
\r
110 setText : function(text){
\r
111 this.initialConfig.text = text;
\r
112 this.callEach('setText', [text]);
\r
115 <div id="method-Ext.Action-getText"></div>/**
\r
116 * Gets the text currently displayed by all components using this action.
\r
118 getText : function(){
\r
119 return this.initialConfig.text;
\r
122 <div id="method-Ext.Action-setIconClass"></div>/**
\r
123 * Sets the icon CSS class for all components using this action. The class should supply
\r
124 * a background image that will be used as the icon image.
\r
125 * @param {String} cls The CSS class supplying the icon image
\r
127 setIconClass : function(cls){
\r
128 this.initialConfig.iconCls = cls;
\r
129 this.callEach('setIconClass', [cls]);
\r
132 <div id="method-Ext.Action-getIconClass"></div>/**
\r
133 * Gets the icon CSS class currently used by all components using this action.
\r
135 getIconClass : function(){
\r
136 return this.initialConfig.iconCls;
\r
139 <div id="method-Ext.Action-setDisabled"></div>/**
\r
140 * Sets the disabled state of all components using this action. Shortcut method
\r
141 * for {@link #enable} and {@link #disable}.
\r
142 * @param {Boolean} disabled True to disable the component, false to enable it
\r
144 setDisabled : function(v){
\r
145 this.initialConfig.disabled = v;
\r
146 this.callEach('setDisabled', [v]);
\r
149 <div id="method-Ext.Action-enable"></div>/**
\r
150 * Enables all components using this action.
\r
152 enable : function(){
\r
153 this.setDisabled(false);
\r
156 <div id="method-Ext.Action-disable"></div>/**
\r
157 * Disables all components using this action.
\r
159 disable : function(){
\r
160 this.setDisabled(true);
\r
163 <div id="method-Ext.Action-isDisabled"></div>/**
\r
164 * Returns true if the components using this action are currently disabled, else returns false.
\r
166 isDisabled : function(){
\r
167 return this.initialConfig.disabled;
\r
170 <div id="method-Ext.Action-setHidden"></div>/**
\r
171 * Sets the hidden state of all components using this action. Shortcut method
\r
172 * for <code>{@link #hide}</code> and <code>{@link #show}</code>.
\r
173 * @param {Boolean} hidden True to hide the component, false to show it
\r
175 setHidden : function(v){
\r
176 this.initialConfig.hidden = v;
\r
177 this.callEach('setVisible', [!v]);
\r
180 <div id="method-Ext.Action-show"></div>/**
\r
181 * Shows all components using this action.
\r
184 this.setHidden(false);
\r
187 <div id="method-Ext.Action-hide"></div>/**
\r
188 * Hides all components using this action.
\r
191 this.setHidden(true);
\r
194 <div id="method-Ext.Action-isHidden"></div>/**
\r
195 * Returns true if the components using this action are currently hidden, else returns false.
\r
197 isHidden : function(){
\r
198 return this.initialConfig.hidden;
\r
201 <div id="method-Ext.Action-setHandler"></div>/**
\r
202 * Sets the function that will be called by each component using this action when its primary event is triggered.
\r
203 * @param {Function} fn The function that will be invoked by the action's components. The function
\r
204 * will be called with no arguments.
\r
205 * @param {Object} scope The scope in which the function will execute
\r
207 setHandler : function(fn, scope){
\r
208 this.initialConfig.handler = fn;
\r
209 this.initialConfig.scope = scope;
\r
210 this.callEach('setHandler', [fn, scope]);
\r
213 <div id="method-Ext.Action-each"></div>/**
\r
214 * Executes the specified function once for each component currently tied to this action. The function passed
\r
215 * in should accept a single argument that will be an object that supports the basic Action config/method interface.
\r
216 * @param {Function} fn The function to execute for each component
\r
217 * @param {Object} scope The scope in which the function will execute
\r
219 each : function(fn, scope){
\r
220 Ext.each(this.items, fn, scope);
\r
224 callEach : function(fnName, args){
\r
225 var cs = this.items;
\r
226 for(var i = 0, len = cs.length; i < len; i++){
\r
227 cs[i][fnName].apply(cs[i], args);
\r
232 addComponent : function(comp){
\r
233 this.items.push(comp);
\r
234 comp.on('destroy', this.removeComponent, this);
\r
238 removeComponent : function(comp){
\r
239 this.items.remove(comp);
\r
242 <div id="method-Ext.Action-execute"></div>/**
\r
243 * Executes this action manually using the handler function specified in the original config object
\r
244 * or the handler function set with <code>{@link #setHandler}</code>. Any arguments passed to this
\r
245 * function will be passed on to the handler function.
\r
246 * @param {Mixed} arg1 (optional) Variable number of arguments passed to the handler function
\r
247 * @param {Mixed} arg2 (optional)
\r
248 * @param {Mixed} etc... (optional)
\r
250 execute : function(){
\r
251 this.initialConfig.handler.apply(this.initialConfig.scope || window, arguments);
\r