/*
 * Ext JS Library 2.1
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.ux.Portlet =  Ext.extend( Ext.Panel, {
    anchor: '100%',
	height: 150,
    frame: true,
	autoHeight: false,
    collapsible: false,
    draggable: {
		insertProxy: true,
		available: false,
		hlColor: 'e4e4e4'
	},
    cls: 'x-portlet'
});
Ext.reg('portlet', Ext.ux.Portlet);













