Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / TextItem.html
1 <html>\r
2 <head>\r
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
6 </head>\r
7 <body  onload="prettyPrint();">\r
8     <pre class="prettyprint lang-js"><div id="cls-Ext.menu.TextItem"></div>/**
9  * @class Ext.menu.TextItem
10  * @extends Ext.menu.BaseItem
11  * Adds a static text string to a menu, usually used as either a heading or group separator.
12  * @constructor
13  * Creates a new TextItem
14  * @param {Object/String} config If config is a string, it is used as the text to display, otherwise it
15  * is applied as a config object (and should contain a <tt>text</tt> property).
16  * @xtype menutextitem
17  */
18 Ext.menu.TextItem = function(cfg){
19     if(typeof cfg == 'string'){
20         cfg = {text: cfg}
21     }
22     Ext.menu.TextItem.superclass.constructor.call(this, cfg);
23 };
24
25 Ext.extend(Ext.menu.TextItem, Ext.menu.BaseItem, {
26     <div id="cfg-Ext.menu.TextItem-text"></div>/**
27      * @cfg {String} text The text to display for this item (defaults to '')
28      */
29     <div id="cfg-Ext.menu.TextItem-hideOnClick"></div>/**
30      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
31      */
32     hideOnClick : false,
33     <div id="cfg-Ext.menu.TextItem-itemCls"></div>/**
34      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
35      */
36     itemCls : "x-menu-text",
37
38     // private
39     onRender : function(){
40         var s = document.createElement("span");
41         s.className = this.itemCls;
42         s.innerHTML = this.text;
43         this.el = s;
44         Ext.menu.TextItem.superclass.onRender.apply(this, arguments);
45     }
46 });
47 Ext.reg('menutextitem', Ext.menu.TextItem);</pre>    \r
48 </body>\r
49 </html>