13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * @class Ext.app.PortalColumn
 * @extends Ext.container.Container
 * A layout column class used internally be {@link Ext.app.PortalPanel}.
 */
Ext.define('Ext.app.PortalColumn', {
    extend: 'Ext.container.Container',
    alias: 'widget.portalcolumn',
 
    requires: [
        'Ext.layout.container.Anchor',
        'Ext.app.Portlet'
    ],
 
    layout: 'anchor',
    defaultType: 'portlet',
    cls: 'x-portal-column'
 
    // This is a class so that it could be easily extended
    // if necessary to provide additional behavior.
});