Blame view

WebRoot/plugins/websocketInstantMsg/ext4/ux/portal/PortalColumn.js 512 Bytes
ad5081d3   孙向锦   初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /**
   * @class Ext.ux.PortalColumn
   * @extends Ext.container.Container
   * A layout column class used internally be {@link Ext.app.PortalPanel}.
   */
  Ext.define('Ext.ux.portal.PortalColumn', {
      extend: 'Ext.container.Container',
      alias: 'widget.portalcolumn',
      layout: {
          type: 'anchor'
      },
      defaultType: 'portlet',
      cls: 'x-portal-column',
      autoHeight: true
      //
      // This is a class so that it could be easily extended
      // if necessary to provide additional behavior.
      //
  });