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