X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..HEAD:/docs/source/TextItem.html?ds=inline diff --git a/docs/source/TextItem.html b/docs/source/TextItem.html index e7293781..4c62db18 100644 --- a/docs/source/TextItem.html +++ b/docs/source/TextItem.html @@ -1,55 +1,72 @@ +
+/*! - * Ext JS Library 3.0.3 - * Copyright(c) 2006-2009 Ext JS, LLC - * licensing@extjs.com - * http://www.extjs.com/license - */ -/** - * @class Ext.menu.TextItem - * @extends Ext.menu.BaseItem - * Adds a static text string to a menu, usually used as either a heading or group separator. + +- \ No newline at end of file +/** + * A simple class that renders text directly into a toolbar. + * + * @example + * Ext.create('Ext.panel.Panel', { + * title: 'Panel with TextItem', + * width: 300, + * height: 200, + * tbar: [ + * { xtype: 'tbtext', text: 'Sample Text Item' } + * ], + * renderTo: Ext.getBody() + * }); + * * @constructor * Creates a new TextItem - * @param {Object/String} config If config is a string, it is used as the text to display, otherwise it - * is applied as a config object (and should contain a text property). - * @xtype menutextitem + * @param {Object} text A text string, or a config object containing a <tt>text</tt> property */ -Ext.menu.TextItem = function(cfg){ - if(typeof cfg == 'string'){ - cfg = {text: cfg} - } - Ext.menu.TextItem.superclass.constructor.call(this, cfg); -}; +Ext.define('Ext.toolbar.TextItem', { + extend: 'Ext.toolbar.Item', + requires: ['Ext.XTemplate'], + alias: 'widget.tbtext', + alternateClassName: 'Ext.Toolbar.TextItem', -Ext.extend(Ext.menu.TextItem, Ext.menu.BaseItem, { - /** - * @cfg {String} text The text to display for this item (defaults to '') - */ - /** - * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false) + /** + * @cfg {String} text The text to be used as innerHTML (html tags are accepted) */ - hideOnClick : false, - /** - * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text") - */ - itemCls : "x-menu-text", + text: '', + + renderTpl: '{text}', + // + baseCls: Ext.baseCSSPrefix + 'toolbar-text', - // private - onRender : function(){ - var s = document.createElement("span"); - s.className = this.itemCls; - s.innerHTML = this.text; - this.el = s; - Ext.menu.TextItem.superclass.onRender.apply(this, arguments); + onRender : function() { + Ext.apply(this.renderData, { + text: this.text + }); + this.callParent(arguments); + }, + + /** + * Updates this item's text, setting the text to be used as innerHTML. + * @param {String} t The text to display (html accepted). + */ + setText : function(t) { + if (this.rendered) { + this.el.update(t); + this.ownerCt.doLayout(); // In case an empty text item (centered at zero height) receives new text. + } else { + this.text = t; + } } -}); -Ext.reg('menutextitem', Ext.menu.TextItem);+});