Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / portal / classes / PortalColumn.js
diff --git a/examples/portal/classes/PortalColumn.js b/examples/portal/classes/PortalColumn.js
new file mode 100644 (file)
index 0000000..4d54b28
--- /dev/null
@@ -0,0 +1,19 @@
+/**
+ * @class Ext.ux.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',
+    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.
+    //
+});
\ No newline at end of file