Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / src / toolbar / Item.js
1 /**
2  * @class Ext.toolbar.Item
3  * @extends Ext.Component
4  * The base class that other non-interacting Toolbar Item classes should extend in order to
5  * get some basic common toolbar item functionality.
6  * @constructor
7  * Creates a new Item
8  * @param {HTMLElement} el
9  * @xtype tbitem
10  */
11 Ext.define('Ext.toolbar.Item', {
12     extend: 'Ext.Component',
13     alias: 'widget.tbitem',
14     alternateClassName: 'Ext.Toolbar.Item',
15     enable:Ext.emptyFn,
16     disable:Ext.emptyFn,
17     focus:Ext.emptyFn
18     /**
19      * @cfg {String} overflowText Text to be used for the menu if the item is overflowed.
20      */
21 });