Embedded
Description
The embedded section is for the embedded document type only (see the config section to find out how to define the embedded document type). It allows to change the settings which define the behavior of the buttons in the embedded mode.
Parameters
Name | Description | Type | Example |
embedUrl | Defines the absolute URL to the document serving as a source file for the document embedded into the web page. | string | “https://example.com/embedded?doc=exampledocument1.docx“ |
fullscreenUrl | Defines the absolute URL to the document which will open in full screen mode. | string | “https://example.com/embedded?doc=exampledocument1.docx#fullscreen“ |
saveUrl | Defines the absolute URL that will allow the document to be saved onto the user personal computer. | string | “https://example.com/download?doc=exampledocument1.docx“ |
shareUrl | Defines the absolute URL that will allow other users to share this document. | string | “https://example.com/view?doc=exampledocument1.docx“ |
toolbarDocked | Defines the place for the embedded viewer toolbar, can be either top or bottom. | string | “top” |
Example
var docEditor = new DocsAPI.DocEditor("placeholder", {
"editorConfig": {
"embedded": {
"embedUrl": "https://example.com/embedded?doc=exampledocument1.docx",
"fullscreenUrl": "https://example.com/embedded?doc=exampledocument1.docx#fullscreen",
"saveUrl": "https://example.com/download?doc=exampledocument1.docx",
"shareUrl": "https://example.com/view?doc=exampledocument1.docx",
"toolbarDocked": "top"
},
...
},
...
});
Where the example.com is the name of the server where document manager and document storage service are installed. See the How it works section to find out more on Document Server service client-server interactions.
当前内容版权归 Onlyoffice 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 Onlyoffice .