Forum Discussion
_anomDiebolt_
7 years agoQrew Elite
The IOL is not the problem. You are probably trying to load xlxs as a global through a <script> tag embedded using $.getScript(). xlxs is written with with module detection logic which will see QuickBase's use of requireJS and consequently load as a requireJS module. You need to do something like this:
require.config({
paths: {
"xlsx": "https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.14.1/xlsx.full.min";
}
});
require(['xlsx'], function(xlsx) {
console.dir(xlsx)
//your code here
});