X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/b37ceabb82336ee82757cd32efe353cfab8ec267..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/docs/source/Separator.html diff --git a/docs/source/Separator.html b/docs/source/Separator.html index d5a3074c..c3e49365 100644 --- a/docs/source/Separator.html +++ b/docs/source/Separator.html @@ -1,52 +1,131 @@ + - + The source code - - + + + + - -
/*!
- * Ext JS Library 3.2.2
- * Copyright(c) 2006-2010 Ext JS, Inc.
- * licensing@extjs.com
- * http://www.extjs.com/license
- */
-
/** - * @class Ext.menu.Separator - * @extends Ext.menu.BaseItem - * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will - * add one of these by using "-" in you call to add() or in your items config rather than creating one directly. - * @constructor - * @param {Object} config Configuration options - * @xtype menuseparator + +
/**
+ * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
+ * add one of these by using "-" in your call to add() or in your items config rather than creating one directly.
+ *
+ *     @example
+ *     Ext.create('Ext.menu.Menu', {
+ *         width: 100,
+ *         height: 100,
+ *         floating: false,  // usually you want this set to True (default)
+ *         renderTo: Ext.getBody(),  // usually rendered by it's containing component
+ *         items: [{
+ *             text: 'icon item',
+ *             iconCls: 'add16'
+ *         },{
+ *             xtype: 'menuseparator'
+ *         },{
+ *            text: 'seperator above',
+ *         },{
+ *            text: 'regular item',
+ *         }]
+ *     });
  */
-Ext.menu.Separator = Ext.extend(Ext.menu.BaseItem, {
-    
/** - * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep") - */ - itemCls : "x-menu-sep", -
/** - * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false) - */ - hideOnClick : false, - -
/** - * @cfg {String} activeClass - * @hide - */ - activeClass: '', - - // private - onRender : function(li){ - var s = document.createElement("span"); - s.className = this.itemCls; - s.innerHTML = " "; - this.el = s; - li.addClass("x-menu-sep-li"); - Ext.menu.Separator.superclass.onRender.apply(this, arguments); +Ext.define('Ext.menu.Separator', { + extend: 'Ext.menu.Item', + alias: 'widget.menuseparator', + + /** + * @cfg {String} activeCls @hide + */ + + /** + * @cfg {Boolean} canActivate @hide + */ + canActivate: false, + + /** + * @cfg {Boolean} clickHideDelay @hide + */ + + /** + * @cfg {Boolean} destroyMenu @hide + */ + + /** + * @cfg {Boolean} disabledCls @hide + */ + + focusable: false, + + /** + * @cfg {String} href @hide + */ + + /** + * @cfg {String} hrefTarget @hide + */ + + /** + * @cfg {Boolean} hideOnClick @hide + */ + hideOnClick: false, + + /** + * @cfg {String} icon @hide + */ + + /** + * @cfg {String} iconCls @hide + */ + + /** + * @cfg {Object} menu @hide + */ + + /** + * @cfg {String} menuAlign @hide + */ + + /** + * @cfg {Number} menuExpandDelay @hide + */ + + /** + * @cfg {Number} menuHideDelay @hide + */ + + /** + * @cfg {Boolean} plain @hide + */ + plain: true, + + /** + * @cfg {String} separatorCls + * The CSS class used by the separator item to show the incised line. + * Defaults to `Ext.baseCSSPrefix + 'menu-item-separator'`. + */ + separatorCls: Ext.baseCSSPrefix + 'menu-item-separator', + + /** + * @cfg {String} text @hide + */ + text: ' ', + + onRender: function(ct, pos) { + var me = this, + sepCls = me.separatorCls; + + me.cls += ' ' + sepCls; + + me.callParent(arguments); } -}); -Ext.reg('menuseparator', Ext.menu.Separator);
+});
- \ No newline at end of file +