TextItem.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:1k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.0.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.menu.TextItem
  9.  * @extends Ext.menu.BaseItem
  10.  * Adds a static text string to a menu, usually used as either a heading or group separator.
  11.  * @constructor
  12.  * Creates a new TextItem
  13.  * @param {Object/String} config If config is a string, it is used as the text to display, otherwise it
  14.  * is applied as a config object (and should contain a <tt>text</tt> property).
  15.  * @xtype menutextitem
  16.  */
  17. Ext.menu.TextItem = function(cfg){
  18.     if(typeof cfg == 'string'){
  19.         cfg = {text: cfg}
  20.     }
  21.     Ext.menu.TextItem.superclass.constructor.call(this, cfg);
  22. };
  23. Ext.extend(Ext.menu.TextItem, Ext.menu.BaseItem, {
  24.     /**
  25.      * @cfg {String} text The text to display for this item (defaults to '')
  26.      */
  27.     /**
  28.      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
  29.      */
  30.     hideOnClick : false,
  31.     /**
  32.      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
  33.      */
  34.     itemCls : "x-menu-text",
  35.     // private
  36.     onRender : function(){
  37.         var s = document.createElement("span");
  38.         s.className = this.itemCls;
  39.         s.innerHTML = this.text;
  40.         this.el = s;
  41.         Ext.menu.TextItem.superclass.onRender.apply(this, arguments);
  42.     }
  43. });
  44. Ext.reg('menutextitem', Ext.menu.TextItem);