Separator.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:1k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.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 = Ext.extend(Ext.menu.BaseItem, {
  17.     /**
  18.      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
  19.      */
  20.     itemCls : "x-menu-sep",
  21.     /**
  22.      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
  23.      */
  24.     hideOnClick : false,
  25.     
  26.     /** 
  27.      * @cfg {String} activeClass
  28.      * @hide 
  29.      */
  30.     activeClass: '',
  31.     // private
  32.     onRender : function(li){
  33.         var s = document.createElement("span");
  34.         s.className = this.itemCls;
  35.         s.innerHTML = " ";
  36.         this.el = s;
  37.         li.addClass("x-menu-sep-li");
  38.         Ext.menu.Separator.superclass.onRender.apply(this, arguments);
  39.     }
  40. });
  41. Ext.reg('menuseparator', Ext.menu.Separator);