Does anybody know what library Project Siena uses to import Excel data. when you publish the app you get some JavaScript files, but I can't figure out which one is used for this.
Project Siena: import Excel Data
196 Views Asked by Mina Wissa At
1
There are 1 best solutions below
Related Questions in WINDOWS-STORE-APPS
- Microsoft Partner Center Issues
- Microsoft Store Policy - User Generated Content
- Error while uploading a binary to StoreApp using API
- Publish a MAUI app for the Microsoft Store returns a ProcessorArchitecture error
- Dependency issue when publish a MAUI application for Windows Store
- Can you open devtools with a windows store app?
- How to create a new app in windows developer center
- Debug WinJS application in production
- Why is my Windows Application Packaging Project stripping all my native libraries from the published package?
- UWP and User Secrets in Deployed Apps
- How to confirm is a user knows the xbox pin in a UWP app?
- How to get refund information for a Windows Store app via API
- Incompatible types for comparison. Numbers, Text can't be compared
- Should TrySilentDownloadAndInstallStorePackageUpdatesAsync relaunch the app?
- How to determine if UWP app is running with windows open?
Related Questions in WINJS
- Override WinJS promises with native promises as a Chrome Extension content script?
- Debug WinJS application in production
- Winjs project - use File picker to select audio file and play it
- How to detect Xbox controller key press events in Windows 11 in Winjs UWP app?
- A WinJS SDK which breaks all jQuery plugins?
- How to enable Xbox One Developer Mode activation?
- how to run code when Microsoft toast notification button is pressed in javascript
- How to get Windows 10 version (e.g. 1809, 1903, 1909, ...) in a UWP app (C# or WinJS)?
- WinJS UWP javascript - how to read a file through a file input
- How much data can be in a LocalSettings container
- Generate PDF from HTML contents in Winjs
- UWP WebView third party Alternatives
- onpointercancel not triggered in Edge when user touches and scrolls the win-list item together
- UWP - Saving a png as jpg, I want the transparency to go White
- Saving a Canvas as an image in UWP
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Siena has its own importer, which utilizes the fact that xlsx files (Siena doesn't import .xls binary formats) are .zips file with a different extension. It's just unzipping the file and then parsing the XML contained therein.
That said, importing Excel data happens in the Project Siena app, not in the app it generates as output (in other words, Excel data is static). If you look in the generated app project, you'll find a file called js/init.js that contains the imported data as JSON, so no additional importing is necessary. Hence you won't necessarily find an Excel importer in the app code.
Siena does pull jszip.js and sax.js into the appfor unzipping and XML parsing, specifically, so one could use these to unzip an xlsx file and parse the XML contents. But there's not something there that you can conveniently repurpose.