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
battk
07/01/2023, 1:12 PM
the define statement looks like
Copy code
define("xlsx",function() { ...
battk
07/01/2023, 1:13 PM
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
Jack R
07/01/2023, 1:20 PM
ok thanks for clarifying my track. I'll carefully read through and see if I can put it all together.