Posted 8 September 2017, 9:59 am EST
Is SpreadJS supports “Accounting Format” like excel do? Please check the attached screenshot.
Thanks.

Forums Home / Spread / SpreadJS
Posted by: nagavardhan on 8 September 2017, 9:59 am EST
Posted 8 September 2017, 9:59 am EST
Is SpreadJS supports “Accounting Format” like excel do? Please check the attached screenshot.
Thanks.

Posted 8 September 2017, 9:59 am EST
Hello,
You can set format of the cells as per your needs as given in documentation link below:-
http://sphelp.grapecity.com/webhelp/SpreadJSWeb/webframe.html#cellformat.html
Hope it helps.
Thanks,
Reeva
Posted 8 September 2017, 9:59 am EST
Reeva,
With accounting format the ‘$’ symbol will go to extreme left in cell. How to that in SpreadJS? Please refer attachment in my question.
Thanks.
Posted 8 September 2017, 9:59 am EST
I was able to add some spaces with this:
var dvalue= 123.89;
activeSheet.setValue(0,0,dvalue);
activeSheet.getCell(0, 0).formatter(new GcSpread.Sheets.GeneralFormatter(“$* ##.##”, GcSpread.Sheets.FormatMode.CustomMode));
SpreadJS does not appear to completely support this format. I have sent this to the developer as an enhancement request.