Comments
-
this is the code: dbx.filesDownload({ path: file }) .then(async function (response) { let reader = new FileReader(); reader.readAsText(response.result.fileBlob); await new Promise(resolve => reader.onload = () => resolve()); let griddata = JSON.parse(reader.result); FlexgridOrderFunctions(griddata, GridName); })…
-
I just have to look in de root for the file. That’s not the problem. My call comes back undefined and not true or false because the await response does not work.
-
So how can i debug it vs 2022 ?
-
I have it restricted to App folder, so I created a folder with the same name on my Dropbox, that’s the way to do i guess ?
-
browser is Edge version 112.0.1722.46, the default browser Visual Studio 22 uses for debugging. In the screenshot you see the debug output generated.