X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=docs%2Fsrc%2FRoo_menu_TextItem.js.html;fp=docs%2Fsrc%2FRoo_menu_TextItem.js.html;h=0adcd1b14c8058a4de4cee5954a91fa9d8c207d2;hb=9ff8ded6bbbd258ecd646184ba26020874e2c085;hp=0000000000000000000000000000000000000000;hpb=2542b67d1a0768025056f2f330bfe50b64d1ad38;p=roojs1 diff --git a/docs/src/Roo_menu_TextItem.js.html b/docs/src/Roo_menu_TextItem.js.html new file mode 100644 index 0000000000..0adcd1b14c --- /dev/null +++ b/docs/src/Roo_menu_TextItem.js.html @@ -0,0 +1,55 @@ +/home/alan/gitlive/roojs1/Roo/menu/TextItem.js/* + * Based on: + * Ext JS Library 1.1.1 + * Copyright(c) 2006-2007, Ext JS, LLC. + * + * Originally Released Under LGPL - original licence link has changed is not relivant. + * + * Fork - LGPL + * <script type="text/javascript"> + */ + +/** + * @class Roo.menu.TextItem + * @extends Roo.menu.BaseItem + * Adds a static text string to a menu, usually used as either a heading or group separator. + * Note: old style constructor with text is still supported. + * + * @constructor + * Creates a new TextItem + * @param {Object} cfg Configuration + */ +Roo.menu.TextItem = function(cfg){ + if (typeof(cfg) == 'string') { + this.text = cfg; + } else { + Roo.apply(this,cfg); + } + + Roo.menu.TextItem.superclass.constructor.call(this); +}; + +Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, { + /** + * @cfg {Boolean} text Text to show on item. + */ + text : '', + + /** + * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false) + */ + hideOnClick : false, + /** + * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text") + */ + itemCls : "x-menu-text", + + // private + onRender : function(){ + var s = document.createElement("span"); + s.className = this.itemCls; + s.innerHTML = this.text; + this.el = s; + Roo.menu.TextItem.superclass.onRender.apply(this, arguments); + } +}); \ No newline at end of file