| 
					
				 | 
			
			
				@@ -610,16 +610,16 @@ JpcFlowTabSrv.prototype.createNew = function(){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         me.dispValueIdxLst.push(vIdx); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         let unitFactor = JpcCommonHelper.getUnitFactor(rptTpl); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         // 2.2 Column tab 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        rst.push(me.outputColumn(rptTpl, null, 1, 0, bands, unitFactor, controls, 0)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        rst = rst.concat(me.outputColumn(rptTpl, null, 1, 0, bands, unitFactor, controls, 0)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         // 2.1 Content-Tab 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        // rst.push(me.outputContent(rptTpl, null, 1, bands, unitFactor, controls, 0, $CURRENT_RPT)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        // rst = rst.concat(me.outputContent(rptTpl, null, 1, bands, unitFactor, controls, 0, $CURRENT_RPT)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         // 2.3 Sum Seg 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        // rst.push(me.outputSegSum(rptTpl, dataObj, 1, 0, bands, unitFactor, controls)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        // rst = rst.concat(me.outputSegSum(rptTpl, dataObj, 1, 0, bands, unitFactor, controls)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         // 2.4 Sum Page 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        // rst.push(me.outputPageSum(rptTpl, dataObj, 1, 0, bands, unitFactor, controls)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        // rst = rst.concat(me.outputPageSum(rptTpl, dataObj, 1, 0, bands, unitFactor, controls)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         // 2.5 Group 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         // 2.6 Discrete 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        rst.push(JpcDiscreteHelper.outputPreviewDiscreteInfo(rptTpl[JV.NODE_FLOW_INFO][JV.NODE_DISCRETE_INFO], bands, unitFactor, pageStatus)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        rst = rst.concat(JpcDiscreteHelper.outputPreviewDiscreteInfo(rptTpl[JV.NODE_FLOW_INFO][JV.NODE_DISCRETE_INFO], bands, unitFactor, pageStatus)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         me.dispValueIdxLst = bkdispValueIdxLst; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return rst; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }; 
			 |