source: trunk/web/addons/job_monarch/lib/extjs-30/src/widgets/menu/Separator.js @ 625

Last change on this file since 625 was 625, checked in by ramonb, 15 years ago

lib/extjs-30:

  • new ExtJS 3.0
File size: 1.4 KB
Line 
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 */
16Ext.menu.Separator = function(config){
17    Ext.menu.Separator.superclass.constructor.call(this, config);
18};
19
20Ext.extend(Ext.menu.Separator, Ext.menu.BaseItem, {
21    /**
22     * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
23     */
24    itemCls : "x-menu-sep",
25    /**
26     * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
27     */
28    hideOnClick : false,
29   
30    /**
31     * @cfg {String} activeClass
32     * @hide
33     */
34    activeClass: '',
35
36    // private
37    onRender : function(li){
38        var s = document.createElement("span");
39        s.className = this.itemCls;
40        s.innerHTML = " ";
41        this.el = s;
42        li.addClass("x-menu-sep-li");
43        Ext.menu.Separator.superclass.onRender.apply(this, arguments);
44    }
45});
46Ext.reg('menuseparator', Ext.menu.Separator);
Note: See TracBrowser for help on using the repository browser.