ExtJS 4.2

by Preetha Srinivasan

HTML

<link rel="stylesheet" href="http://cdn.sencha.io/ext-4.2.0-gpl/resources/css/ext-all.css">
<div id="ct" style="margin: 5px"></div>

JavaScript

Ext.define('xcp.widget.ProgressDisplayWidget', {
	  extend: 'Ext.panel.Panel',
	  alias: 'widget.xcp_progress_display_widget',
    title: 'Panel Header Collapse',
    bodyPadding: 10,
    id: 'outer',
    collapsible: true,
    width:500,
    height: 150,
    layout: 'vbox',
    items: [],
   
    
    initComponent: function() {
        this.callParent(arguments);
    }

  });