Ext.namespace("phpInfo"); phpInfo.application = { init: function () { //Components var pnlMain = new Ext.Panel({ id: "pnlMain", layout: "border", border: false, title: _("ID_PHP_INFO"), items: [ { xtype: "panel", region: "center", margins: {top: 10, right: 10, bottom: 10, left: 10}, border: false, html: "" } ] }); //Load all panels var viewport = new Ext.Viewport({ layout: "fit", items: [pnlMain] }); } } Ext.onReady(phpInfo.application.init, phpInfo.application);