Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
        new Ext.Window({
            width        : 300,
            height       : 650,
            title        : 'Accordion window',
            layout       : 'accordion',
            border       : false,
            layoutConfig : {
                animate : true
            },
            items : [
                {
                    xtype : 'panel',
                    title : 'Plain Panel',
                    html  : 'asdf'
                },
                {
                    title : 'Plain Panel 2',
                    html  : 'asdf'
                }
            ]
        }).show();
});
 
asdf