How can I use the editor in read-only mode like a browser for displaying pages?
This will work in the Enterprise version only. Do the following: hTMLEditor.setBrowsingInPreviewEnabled(true); – this will enable hyperlinks in the preview section and when you click on them you will able to navigate through the pages. hTMLEditor.setVisualEditorFollowsPreview(true); – if you use this method in conjunction with the one above, the visual editor will follow the preview. This way will be possible to navigate to a certain page in the preview and after that switching to the visual editor edit it directly. hTMLEditor.setPreviewModeOnly(true); – if you use this method in conjunction with the setBrowsingInPreviewEnabled(true), will be shown only the preview section, thus converting the editor in a browser.