Has anyone gotten sheetJS to work? I’m just trying...
# suitescript
j
Has anyone gotten sheetJS to work? I’m just trying to read an XLSX. I read through sheetJS’s NetSuite page and a project on git. Seems like I only needed to download the JS library and reference it. No luck!
b
the define statement looks like
Copy code
define("xlsx",function() { ...
suitescript doesnt actually support module ids like that in define statements, so you have to use a _*require*_ _*Configuration*_ to create a path for the xlsx alias
j
ok thanks for clarifying my track. I'll carefully read through and see if I can put it all together.