Separator.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.Separator
  9.  * @extends Ext.menu.BaseItem
  10.  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
  11.  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
  12.  * @constructor
  13.  * @param {Object} config Configuration options
  14.  * @xtype menuseparator
  15.  */
  16. Ext.menu.Separator = function(config){
  17.     Ext.menu.Separator.superclass.constructor.call(this, config);
  18. };
  19. Ext.extend(Ext.menu.Separator, Ext.menu.BaseItem, {
  20.     /**
  21.      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
  22.      */
  23.     itemCls : "x-menu-sep",
  24.     /**
  25.      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
  26.      */
  27.     hideOnClick : false,
  28.     
  29.     /** 
  30.      * @cfg {String} activeClass
  31.      * @hide 
  32.      */
  33.     activeClass: '',
  34.     // private
  35.     onRender : function(li){
  36.         var s = document.createElement("span");
  37.         s.className = this.itemCls;
  38.         s.innerHTML = " ";
  39.         this.el = s;
  40.         li.addClass("x-menu-sep-li");
  41.         Ext.menu.Separator.superclass.onRender.apply(this, arguments);
  42.     }
  43. });
  44. Ext.reg('menuseparator', Ext.menu.Separator);