Files
luos/workflow/engine/templates/setup/dbInfo.js
jennylee 54a0c7f75b BUG 10811 Nothing is displayed on Admin > Settings > System Information.
Was occurring an error with a validation in SysGeneric.php file.
2013-02-14 16:04:24 -04:00

32 lines
681 B
JavaScript

Ext.namespace("dbInfo");
dbInfo.application = {
init: function ()
{
var sumaryInfPanel = PMExt.createInfoPanel('../../uxmodern/main/getSystemInfo');
var panelInfo = new Ext.Panel({
id:'panelInfo',
title: _("ID_SYSTEM_INFO"),
frame:true,
autoWidth:true,
autoHeight:true,
collapsible:false,
items:[
sumaryInfPanel
]
});
//Load all panels
var viewport = new Ext.Viewport({
layout: "fit",
items: [panelInfo]
});
}
}
Ext.onReady(dbInfo.application.init, dbInfo.application);