]> git.proxmox.com Git - extjs.git/blame - extjs/examples/classic/neptune-components/app/view/tab/OverflowTabs.js
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / classic / neptune-components / app / view / tab / OverflowTabs.js
CommitLineData
6527f429
DM
1Ext.define('Neptune.view.tab.OverflowTabs', {\r
2 extend: 'Ext.container.Container',\r
3 xtype: 'overflowTabs',\r
4 id: 'overflowTabs',\r
5\r
6 layout: {\r
7 type: 'table',\r
8 columns: 2,\r
9 tdAttrs: { style: 'padding: 7px; vertical-align: top;' }\r
10 },\r
11 defaults: {\r
12 width: 400,\r
13 height: 300\r
14 },\r
15 items: [\r
16 { xtype: 'overflowTabPanel' },\r
17 { xtype: 'overflowTabPanel', frame: true },\r
18 { xtype: 'overflowTabPanel', tabPosition: 'bottom' },\r
19 { xtype: 'overflowTabPanel', tabPosition: 'bottom', frame: true }\r
20 ]\r
21});