Config
The config base section allows to change the platform type used, document display size (width and height) and type of the document opened.
Name |
Description |
Type |
Example |
documentType |
Defines the document type to be opened:
open a text document (.doc, .docm, .docx, .dot, .dotm, .dotx, .epub, .fodt, .htm, .html, .mht, .odt, .ott, .pdf, .rtf, .txt, .djvu, .xps) for viewing or editing - word,
open a spreadsheet (.csv, .fods, .ods, .ots, .xls, .xlsm, .xlsx, .xlt, .xltm, .xltx) for viewing or editing - cell,
open a presentation (.fodp, .odp, .otp, .pot, .potm, .potx, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx) for viewing or editing - slide.
|
string |
"cell" |
text, spreadsheet and presentation values are deprecated since version 6.1. Please use new values instead.
|
height |
Defines the document height (100% by default) in the browser window. |
string |
"100%" |
token |
Defines the encrypted signature added to the Document Server config in the form of a token. |
string |
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.t-IDcSemACt8x4iTMCda8Yhe3iZaWbvV5XKSTbuAn0M" |
type |
Defines the platform type used to access the document.
Can be:
optimized to access the document from a desktop or laptop computer - desktop,
optimized to access the document from a tablet or a smartphone - mobile,
specifically formed to be easily embedded into a web page - embedded.
The default value is "desktop".
|
string |
"desktop" |
width |
Defines the document width (100% by default) in the browser window. |
string |
"100%" |
var docEditor = new DocsAPI.DocEditor("placeholder", {
"documentType": "word",
"height": "100%",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.t-IDcSemACt8x4iTMCda8Yhe3iZaWbvV5XKSTbuAn0M",
"type": "desktop",
"width": "100%",
...
});