Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var p = new Ext.Panel({
        title: 'Title',
        width: 300,
        html: 'html code here',
        tbar: [{
            text: 'Click',
            handler: function(){
               alert("asdf");
            }
        }],
        renderTo: Ext.getBody()
    });
});