Excel JavaScript API open a file
up vote
0
down vote
favorite
I have a excel file on my server,such as "http://oss.sheetjs.com/test_files/formula_stress_test.xlsx",I want to open local Excel use Excel JavaScript API.
Please tell me ,Can I do it?
xlsx excel-addins
add a comment |
up vote
0
down vote
favorite
I have a excel file on my server,such as "http://oss.sheetjs.com/test_files/formula_stress_test.xlsx",I want to open local Excel use Excel JavaScript API.
Please tell me ,Can I do it?
xlsx excel-addins
Here's a library that literally has everything you need for thishttps://github.com/SheetJS/js-xlsx
– Bargros
Nov 13 at 9:50
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a excel file on my server,such as "http://oss.sheetjs.com/test_files/formula_stress_test.xlsx",I want to open local Excel use Excel JavaScript API.
Please tell me ,Can I do it?
xlsx excel-addins
I have a excel file on my server,such as "http://oss.sheetjs.com/test_files/formula_stress_test.xlsx",I want to open local Excel use Excel JavaScript API.
Please tell me ,Can I do it?
xlsx excel-addins
xlsx excel-addins
asked Nov 13 at 9:42
牛慧升
11
11
Here's a library that literally has everything you need for thishttps://github.com/SheetJS/js-xlsx
– Bargros
Nov 13 at 9:50
add a comment |
Here's a library that literally has everything you need for thishttps://github.com/SheetJS/js-xlsx
– Bargros
Nov 13 at 9:50
Here's a library that literally has everything you need for this
https://github.com/SheetJS/js-xlsx
– Bargros
Nov 13 at 9:50
Here's a library that literally has everything you need for this
https://github.com/SheetJS/js-xlsx
– Bargros
Nov 13 at 9:50
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Will this help you to open the excel file?
<script type="text/javascript">
function test() {
var Excel = new ActiveXObject("Excel.Application");
Excel.Visible = true;
Excel.Workbooks.Open("test.xlsx");
}
</script>
Here also have some example take a look Example
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Will this help you to open the excel file?
<script type="text/javascript">
function test() {
var Excel = new ActiveXObject("Excel.Application");
Excel.Visible = true;
Excel.Workbooks.Open("test.xlsx");
}
</script>
Here also have some example take a look Example
add a comment |
up vote
0
down vote
Will this help you to open the excel file?
<script type="text/javascript">
function test() {
var Excel = new ActiveXObject("Excel.Application");
Excel.Visible = true;
Excel.Workbooks.Open("test.xlsx");
}
</script>
Here also have some example take a look Example
add a comment |
up vote
0
down vote
up vote
0
down vote
Will this help you to open the excel file?
<script type="text/javascript">
function test() {
var Excel = new ActiveXObject("Excel.Application");
Excel.Visible = true;
Excel.Workbooks.Open("test.xlsx");
}
</script>
Here also have some example take a look Example
Will this help you to open the excel file?
<script type="text/javascript">
function test() {
var Excel = new ActiveXObject("Excel.Application");
Excel.Visible = true;
Excel.Workbooks.Open("test.xlsx");
}
</script>
Here also have some example take a look Example
answered Nov 13 at 10:01
Victor
147
147
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53278037%2fexcel-javascript-api-open-a-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Here's a library that literally has everything you need for this
https://github.com/SheetJS/js-xlsx
– Bargros
Nov 13 at 9:50