Alien-Web-ExtJS-V3
view release on metacpan or search on metacpan
share/docs/source/ButtonGroup.html view on Meta::CPAN
<!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-ButtonGroup-method-constructor'><span id='Ext-ButtonGroup'>/**
</span></span> * @class Ext.ButtonGroup
* @extends Ext.Panel
* Container for a group of buttons. Example usage:
* <pre><code>
var p = new Ext.Panel({
title: 'Panel with Button Group',
width: 300,
height:200,
renderTo: document.body,
html: 'whatever',
tbar: [{
xtype: 'buttongroup',
{@link #columns}: 3,
title: 'Clipboard',
items: [{
text: 'Paste',
scale: 'large',
rowspan: 3, iconCls: 'add',
iconAlign: 'top',
cls: 'x-btn-as-arrow'
},{
xtype:'splitbutton',
text: 'Menu Button',
scale: 'large',
rowspan: 3,
iconCls: 'add',
iconAlign: 'top',
arrowAlign:'bottom',
menu: [{text: 'Menu Item 1'}]
},{
xtype:'splitbutton', text: 'Cut', iconCls: 'add16', menu: [{text: 'Cut Menu Item'}]
},{
text: 'Copy', iconCls: 'add16'
},{
text: 'Format', iconCls: 'add16'
}]
}]
});
* </code></pre>
* @constructor
* Create a new ButtonGroup.
* @param {Object} config The config object
* @xtype buttongroup
*/
Ext.ButtonGroup = Ext.extend(Ext.Panel, {
<span id='Ext-ButtonGroup-cfg-columns'> /**
( run in 0.397 second using v1.01-cache-2.11-cpan-02777c243ea )