Difficulties Adding a Sheet in JSON Format that References Other Sheets

Posted by: georgeg on 26 March 2025, 4:59 pm EST

    • Post Options:
    • Link

    Posted 26 March 2025, 4:59 pm EST - Updated 26 March 2025, 5:08 pm EST

    Hi,

    I am trying to simulate adding a sheet with references to another sheet, with a line chart on it, and am having issues getting the references to grab the data where the actual data exists? How to accomplish this?

    Steps:

    (1) Importing the sheet TestAgain.xlsx using the import feature on the file tab.

    …Ok that works as expected, all of the sheets come in with the expected data.



    (2) Click on Add Custom Sheet button (see the attached zipped project: TestAddsheetToDesigner). this should access the function: addSheetToWorkbook() and add the sheet to the Workbook.



    This is added without any errors or exceptions thrown, but for some reason the references are not referencing the workbook data I previously imported into the workbook.

    When I look in the cells the references are there but for some reason its not showing the data in the referenced cell (In this case the sheet Queue Forecast DAY is referenced).



    But I am not getting the data from the referenced cells from the custom sheet that has references. in the Imported sheet (see TestAgain.xlsx)

    This is the code of the function adding the function:

    [code] function addSheetToWorkbook() {

            // Assuming you have the JSON string of the sheet data
            //let clobDataAsString = /* your JSON string here */;
    
            // Parse the JSON string back to an object
            //let sheetData = JSON.parse(customSheet);
    
            // Get the designer control and workbook
            var designer = GC.Spread.Sheets.Designer.findControl(document.getElementById('designerHost'));
            var spread = designer.getWorkbook();
    
            // Create a new sheet and set its data
            let newSheet = new GC.Spread.Sheets.Worksheet();
            newSheet.fromJSON(customSheet);
    
            // Add the new sheet to the workbook
            spread.addSheet(spread.getSheetCount(), newSheet);
    
            // Optionally, you can set the new sheet as the active sheet
            // spread.setActiveSheet(newSheet.name());
    
            // Optionally, set the first sheet as the active sheet
            spread.setActiveSheet(workbookData.sheets[0].name);
    
            spread.refresh();
    
        }[/code]
    

    The structure of the sheet I am adding is contained in the scripts/TestData/spreadJsTestData.js

    I would be getting this structure as a JSON string the parsing it into JSON… and adding like the function above does.

    The problem is the references are not working… what am I doing wrong? Is the JSON I am adding malformed? or is there something I am missing?

    Thanks!

    George

  • Posted 27 March 2025, 8:43 am EST

    Hi,

    We are still investigating the issue at our end. We will let you know about our findings as soon as possible.

    Regards,

  • Posted 27 March 2025, 11:46 am EST - Updated 27 March 2025, 11:53 am EST

    Okay. Wow. I sure have to do alot myself! :slight_smile:

    But this seemed to rerender everything:

    [code]

    function addSheetToWorkbookThree() {

            // Get the designer control and workbook
            var designer = GC.Spread.Sheets.Designer.findControl(document.getElementById('designerHost'));
            var spread = designer.getWorkbook();
    
            // Find and remove the initial sheet named "Sheet1"
            let initialSheetIndex = spread.sheets.findIndex(sheet => sheet.name() === "Sheet1");
            if (initialSheetIndex !== -1) {
                spread.removeSheet(initialSheetIndex);
            }
    
            // Create and add the custom sheet
            let customSheet = new GC.Spread.Sheets.Worksheet();
            customSheet.fromJSON(customSheetData);
            spread.addSheet(spread.getSheetCount(), customSheet);
    
            // Optionally, set the custom sheet as the active sheet
            spread.setActiveSheet(customSheet.name());
    
            // Recalculate formulas
            customSheet.recalcAll(true);
    
            console.log("customSheet :", customSheet);
    
            // Log all charts in the custom sheet
            let charts = customSheet.charts.all();
            console.log("Charts in customSheet:", charts);
    
            // Refresh the first chart if it exists
            if (charts.length > 0) {
                charts[0].refreshContent();
            }
    
            // Force re-render by resizing the active sheet
            customSheet.suspendPaint();
            customSheet.setColumnWidth(0, customSheet.getColumnWidth(0) + 1);
            customSheet.setColumnWidth(0, customSheet.getColumnWidth(0) - 1);
            customSheet.resumePaint();
    
        }[/code]
    



    Is there a more straightforward way to do this?

    Thanks!

    George

  • Posted 28 March 2025, 7:28 am EST

    Hi George,

    We are glad your issue is resolved. However, there are few observations from our investigation.

    Recalculate formulas

    // Recalculate formulas
    customSheet.recalcAll(true);

    We can see that you have used the Recalculate the custom Sheet, which is neccessary as to set the refernces and calculate the values. However, you can achieve the same via the following method as well

    designer.getWorkbook().calculate(GC.Spread.Sheets.CalculationType.rebuild)

    note :- The optimal way is to recalc the sheet only.

    RefreshContent of charts

    This issue is reproducible at our end as well where we need to explicitly perform some worksheet actions or chart action to re-paint the chart canvas element. However, we could not find a method to trigger this re-render. We have escalated the issue to the devs team and will keep you updated.

    Internal Tracking Id:- SJS-28955

    You can use the mentioned forced re-render till then.

    Regards,

    Ankit

  • Posted 28 March 2025, 10:21 am EST

    Ok. thanks yes seems to be working. --George

  • Posted 31 March 2025, 5:35 am EST

    Hi,

    It’s great to hear that. We will keep you updated regarding any response from the devs.

    Regards,

  • Posted 3 April 2025, 12:01 am EST

    Hi,

    Thanks for your patience while we discussed the issue with the development team. The developers have suggested to add the sheet to SpreadJS before loading it using the JSON so that recalculation will work on the added sheet to SpreadJS and not an isolated worksheet with no parent Spread instance. Please refer to the code snippet below that demonstrates the same:

    let customSheet = new GC.Spread.Sheets.Worksheet();
    spread.addSheet(spread.getSheetCount(), customSheet);
    customSheet.fromJSON(customSheetData);

    Please feel free to reach out if you encounter any further issues or require additional guidance.

    Best Regards,

    Ankit

Need extra support?

Upgrade your support plan and get personal unlimited phone support with our customer engagement team

Learn More

Forum Channels