Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / portal / classes / PortalColumn.js
1 /**
2  * @class Ext.ux.PortalColumn
3  * @extends Ext.container.Container
4  * A layout column class used internally be {@link Ext.app.PortalPanel}.
5  */
6 Ext.define('Ext.app.PortalColumn', {
7     extend: 'Ext.container.Container',
8     alias: 'widget.portalcolumn',
9     layout: {
10         type: 'anchor'
11     },
12     defaultType: 'portlet',
13     cls: 'x-portal-column',
14     autoHeight: true
15     //
16     // This is a class so that it could be easily extended
17     // if necessary to provide additional behavior.
18     //
19 });