55 lines
2.1 KiB
HTML
55 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>The source code</title>
|
|
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
|
|
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
|
|
<style type="text/css">
|
|
.highlight { display: block; background-color: #ddd; }
|
|
</style>
|
|
<script type="text/javascript">
|
|
function highlight() {
|
|
document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="prettyPrint(); highlight();">
|
|
<pre class="prettyprint lang-js"><span id='Ext-menu-Separator-method-constructor'><span id='Ext-menu-Separator'>/**
|
|
</span></span> * @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
|
|
*/
|
|
Ext.menu.Separator = Ext.extend(Ext.menu.BaseItem, {
|
|
<span id='Ext-menu-Separator-cfg-itemCls'> /**
|
|
</span> * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
|
|
*/
|
|
itemCls : "x-menu-sep",
|
|
<span id='Ext-menu-Separator-cfg-hideOnClick'> /**
|
|
</span> * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
|
|
*/
|
|
hideOnClick : false,
|
|
|
|
<span id='Ext-menu-Separator-cfg-activeClass'> /**
|
|
</span> * @cfg {String} activeClass
|
|
* @hide
|
|
*/
|
|
activeClass: '',
|
|
|
|
<span id='Ext-menu-Separator-method-onRender'> // private
|
|
</span> onRender : function(li){
|
|
var s = document.createElement("span");
|
|
s.className = this.itemCls;
|
|
s.innerHTML = "&#160;";
|
|
this.el = s;
|
|
li.addClass("x-menu-sep-li");
|
|
Ext.menu.Separator.superclass.onRender.apply(this, arguments);
|
|
}
|
|
});
|
|
Ext.reg('menuseparator', Ext.menu.Separator);</pre>
|
|
</body>
|
|
</html>
|