PortalColumn.js 362 B

1234567891011121314
  1. /*!
  2. * Ext JS Library 3.0.0
  3. * Copyright(c) 2006-2009 Ext JS, LLC
  4. * licensing@extjs.com
  5. * http://www.extjs.com/license
  6. */
  7. Ext.ux.PortalColumn = Ext.extend(Ext.Container, {
  8. layout : 'anchor',
  9. //autoEl : 'div',//already defined by Ext.Component
  10. defaultType : 'portlet',
  11. cls : 'x-portal-column'
  12. });
  13. Ext.reg('portalcolumn', Ext.ux.PortalColumn);