X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/portal/classes/PortalColumn.js diff --git a/examples/portal/classes/PortalColumn.js b/examples/portal/classes/PortalColumn.js new file mode 100644 index 00000000..4d54b282 --- /dev/null +++ b/examples/portal/classes/PortalColumn.js @@ -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