Contact Support
Deploy document editor component for mobile in EJ2 TypeScript Document editor control
3 May 20252 minutes to read
Document editor component for Mobile
At present, Document editor component is not responsive for mobile, and we haven’t ensured the editing functionalities in mobile browsers. Whereas it works properly as a document viewer in mobile browsers.
Hence, it is recommended to switch the Document editor component as read-only in mobile browsers. Also, invoke fitPage
method with FitPageWidth
parameter in document change event, such as to display one full page by adjusting the zoom factor.
The following example code illustrates how to deploy Document Editor component for Mobile.
//Initialize Document Editor Container component.
import { DocumentEditorContainer, Toolbar } from '@syncfusion/ej2-documenteditor';
DocumentEditorContainer.Inject(Toolbar);
let container: DocumentEditorContainer = new DocumentEditorContainer({
enableToolbar: true, height: '590px'
});
container.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
container.appendTo('#DocumentEditor');
//To detect the device
let isMobileDevice: bool = /Android|Windows Phone|webOS/i.test(navigator.userAgent);
container.documentChange = () => {
if (isMobileDevice) {
container.restrictEditing = true;
setTimeout(() => {
container.documentEditor.fitPage("FitPageWidth");
}, 50);
}
else {
container.restrictEditing = false;
}
}
The Web API hosted link
https://services.syncfusion.com/js/production/api/documenteditor/
utilized in the Document Editor’s serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the GitHub Web Service example or Docker image for hosting your own web service and use for the serviceUrl property.
You can download the complete working example from this GitHub location
Note: You can use the
restrictEditing
in DocumentEditorContainer andisReadOnly
in DocumentEditor based on your requirement to change component to read only mode.