PortalColumn.js 512 B

12345678910111213141516171819
  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.ux.portal.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. });