Read only mode in SpreadJS?

Posted by: guy.g on 30 December 2018, 3:40 am EST

    • Post Options:
    • Link

    Posted 30 December 2018, 3:40 am EST

    Is there a read only mode setting in SpreadJS like in Wijmo FlexSheet?

    (flexSheet.isReadOnly = true)

  • Posted 30 December 2018, 5:38 pm EST

    Hello,

    There isn’t any direct property by the name of “isReadOnly” in Spread.Sheets.

    However, we can make Spread.Sheets readonly by setting e.PreventDfault() in EditStarting event as given below:-

    var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"), { sheetCount: 2 });
                var sheet = spread.getActiveSheet();
                sheet.bind(GC.Spread.Sheets.Events.EditStarting, function (sender, args, e) {
                                  e.preventDefault();
     });
    

    Or, you can set sheet.option.isProtected= true and cell.locked(true) to make Spread.Sheets readonly as given in documentation link below:-

    https://help.grapecity.com/spread/SpreadSheets12/webframe.html#celllock.html

    https://help.grapecity.com/spread/SpreadSheets12/webframe.html#sccelllock.html

    Hope it helps.

    Thanks,

    Reeva

  • Posted 30 December 2018, 10:46 pm EST

    Thank you very much for the answer.

    isProtected is just what I was looking for.

  • Posted 1 January 2019, 2:39 pm EST

    Hello,

    We are glad to know that your issue has been resolved.

    Thanks,

    Reeva

Need extra support?

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

Learn More

Forum Channels