You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
914 B
HTML
32 lines
914 B
HTML
<html>
|
|
<body>
|
|
<div id="placeholder"></div>
|
|
<script type="text/javascript" src="/onlyoffice/web-apps/apps/api/documents/api.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
config = {
|
|
"document": {
|
|
"fileType": "xlsx",
|
|
"key": "Khirz6zTPdfd7",
|
|
"title": "test.xlsx",
|
|
"url": "http://localhost:3000/onlyoffice/xlsx.docx"
|
|
},
|
|
"documentType": "spreadsheet",
|
|
"editorConfig": {
|
|
"user": {
|
|
"id": "c0c3bf82-20d7-4663-bf6d-7fa39c598b1d",
|
|
"name": "John Smith"
|
|
}
|
|
},
|
|
"events": {
|
|
"onDocumentStateChange": function(evt) { console.log("in change"); window.top.APP.config.onLocal(); },
|
|
"onReady": function(evt) { console.log("in onReady"); window.top.APP.config.onRemoteInit(); }
|
|
}
|
|
};
|
|
|
|
|
|
var docEditor = new DocsAPI.DocEditor("placeholder", config);
|
|
</script>
|
|
</body>
|
|
</html>
|