Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    CubeGrid export as pdf missing axis

    I call isc.RPCManager.exportContent on the cube grid but i just get the middle part of the grid.

    With SmartClient_83_PowerEdition + Analytic module + IE9 + Firefox 3.5

    Code:
    isc.CubeGrid.create({
    							ID:"ZZ_Custom_Demo_Grid",
    							data: Demo_Data,
    							top:100,
    							left:10,
    							width:"100%", height:400,
    							hideEmptyFacetValues:true,
    							autoFetchData:false,
    							formatCellValue:"isc.Format.toUSDollarString(value)",
    
    							columnFacets:["quarter","month","metric"],
    							rowFacets:["region","product"],
    							getCellCSSText: function (record, rowNum, colNum) {
    								//if (this.getFieldName(colNum) == "metric") {
    									if (record._value < 5000) {
    										return "font-weight:bold; color:red;";
    									} else if (record._value > 40000) {
    										return "font-weight:bold; color:green;";
    									}
    								//}
    							}
    
    						})
    Attached Files
    Last edited by ofitoussi@twinfi.com; 31 Jan 2013, 02:01.

    #2
    need help for a poc

    Hi isomorphic !

    Can we have an answser on this post, we have to show the poc at the end of the week.

    Thanks

    Comment


      #3
      Same issue - PDF and output printing not right with CubeGrid

      We're using v8.2p_2012-08-11/PowerEdition Deployment (built 2012-08-11) on Safari 6.0.4 (8536.29.13) OS/X and IE 9.0.8112.16421

      We're having a problem with exporting the data on the screen on a CubeGrid to PDF. It's missing all of the facet information on the left part of the cube. It shows only the data values on the cube on the right part of it.

      Here's the code we use to create the PDF file.

      DSRequest requestProperties = new DSRequest();
      requestProperties.setExportFilename("Screen");
      requestProperties.setExportDisplay(ExportDisplay.WINDOW);
      requestProperties.setContentType("application/pdf");
      requestProperties.setDownloadResult(true);
      RPCManager.exportContent(advancedCube, requestProperties);

      There's no error coming from the server side code or the front end - just the output is missing the facets.

      Comment

      Working...
      X