提交 71ef40c4 编写于 作者: U unknown

打开数据中心应用,默认选中导航中的第一项

上级 32f2ed9c
......@@ -328,7 +328,6 @@ MWF.xApplication.query.Query.Main = new Class({
return (a.orderNumber || 999999999) - (b.orderNumber || 999999999 );
});
json.data.each(function (statement) {
debugger;
if (statement.display !== false ) {
var item = this.createStatementNaviItem(statement);
this.statementItems.push(item);
......@@ -361,7 +360,6 @@ MWF.xApplication.query.Query.Main = new Class({
return (a.orderNumber || 999999999) - (b.orderNumber || 999999999 );
});
json.data.each(function (importer) {
debugger;
if (importer.display !== false ) {
var item = this.createImporterNaviItem(importer);
this.importerItems.push(item);
......@@ -445,7 +443,6 @@ MWF.xApplication.query.Query.ViewItem = new Class({
this.isSelected = false;
},
loadView: function(){
debugger;
MWF.xDesktop.requireApp("query.Query", "Viewer",function(){
this.viewContent.empty();
var data = JSON.parse(this.view.data);
......@@ -511,7 +508,6 @@ MWF.xApplication.query.Query.StatementItem = new Class({
loadView: function(){
MWF.xDesktop.requireApp("query.Query", "Statement",function(){
this.viewContent.empty();
debugger;
this.viewer = new MWF.QStatement( this.viewContent, {
"application": this.view.query,
"statementName": this.view.name,
......@@ -540,7 +536,6 @@ MWF.xApplication.query.Query.ImporterItem = new Class({
},
loadView: function(){
MWF.xDesktop.requireApp("query.Query", "ImporterRecord", function(){
debugger;
this.viewContent.empty();
this.viewer = new MWF.xApplication.query.Query.ImporterRecord( this.viewContent, this.app, {
"application": this.view.query,
......
......@@ -25,7 +25,6 @@ MWF.xApplication.query.Query.Statement = MWF.QStatement = new Class({
this.container = $(container);
debugger;
this.json = json || {};
this.parentMacro = parentMacro;
......
......@@ -1815,8 +1815,6 @@ MWF.xApplication.query.Query.Viewer.Item = new Class({
this.sequenceTd.set("text", s);
}
debugger;
Object.each(this.view.entries, function(c, k){
var cell = this.data.data[k];
if (cell === undefined) cell = "";
......@@ -2313,7 +2311,6 @@ MWF.xApplication.query.Query.Viewer.ItemCategory = new Class({
this.expanded = false;
if (this.view.json.itemStyles) this.categoryTd.setStyles(this.view.json.itemStyles);
debugger;
if( this.groupColumn ){
if( typeOf(this.groupColumn.contentStyles) === "object" )this.categoryTd.setStyles(this.groupColumn.contentStyles);
if( typeOf(this.groupColumn.contentProperties) === "object" )this.categoryTd.setProperties(this.groupColumn.contentProperties);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册