forked from sheetjs/sheetjs
SheetJS
dc2128caca
- `BrtUid` record (fixes #1044 h/t @gustavosimil) - `sheet_to_json` allow default for errors (fixes #1035 h/t @arijitkanrar) - docs and demos update
65 lines
2.3 KiB
HTML
65 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<!-- xlsx.js (C) 2013-present SheetJS http://sheetjs.com -->
|
|
<!-- vim: set ts=2: -->
|
|
<html ng-app="app">
|
|
<head>
|
|
<title>SheetJS + AngularJS + ui-grid</title>
|
|
<!-- Angular -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-touch.js"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-animate.js"></script>
|
|
|
|
<!-- ui-grid -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-grid/4.0.0/ui-grid.js"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-grid/4.0.0/ui-grid.css"/>
|
|
|
|
<!-- SheetJS js-xlsx library -->
|
|
<script src="shim.js"></script>
|
|
<script src="xlsx.full.min.js"></script>
|
|
|
|
<!-- SheetJS Service -->
|
|
<script src="SheetJS-angular.js"></script>
|
|
|
|
<style>
|
|
.grid1 {
|
|
width: 500px;
|
|
height: 400px;
|
|
};
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<pre>
|
|
<b><a href="http://sheetjs.com">SheetJS + AngularJS demo</a></b>
|
|
|
|
The core library can be used as-is in AngularJS applications.
|
|
The <a href="https://github.com/sheetjs/js-xlsx">Community Edition README</a> details some common use cases.
|
|
We also have some <a href="http://sheetjs.com/demos/">more public demos</a>
|
|
|
|
This demo shows:
|
|
- SheetJSExportService: a service for exporting data from a ui-grid
|
|
- SheetJSImportDirective: a directive providing a file input button for import
|
|
|
|
<a href="https://obamawhitehouse.archives.gov/sites/default/files/omb/budget/fy2014/assets/receipts.xls">Sample Spreadsheet</a>
|
|
</pre>
|
|
|
|
<div ng-controller="MainCtrl">
|
|
<input type="file" import-sheet-js="" opts="gridOptions" multiple="false" />
|
|
<div id="grid1" ui-grid="gridOptions" ui-grid-selection ui-grid-exporter class="grid"></div>
|
|
</div>
|
|
|
|
<script src="app.js"></script>
|
|
<script type="text/javascript">
|
|
/* eslint no-use-before-define:0 */
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-36810333-1']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html>
|