tvheadend/vendor/ext-3.4.1/docs/source/Separator.html
Adam Sutton bafcfff42d webui: restructure webui/extjs source files
I want to keep the 3rd-party packages away from the main source
where possible.
2013-06-03 17:11:01 +01:00

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 &quot;-&quot; 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 &quot;x-menu-sep&quot;)
*/
itemCls : &quot;x-menu-sep&quot;,
<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(&quot;span&quot;);
s.className = this.itemCls;
s.innerHTML = &quot;&amp;#160;&quot;;
this.el = s;
li.addClass(&quot;x-menu-sep-li&quot;);
Ext.menu.Separator.superclass.onRender.apply(this, arguments);
}
});
Ext.reg('menuseparator', Ext.menu.Separator);</pre>
</body>
</html>