CKEditor Pagination overview

1
0

I am using ckeditor extension and I need to know how to implement pagination, I want the user to be able to see the page breaks in the editor, the Pagination Overview as seen in the image I attached. Thanks

Attachment
  • You must to post comments
0
0

You’ll want to set the “Options” of the CKEditor widget.

See the documentation here:

https://docs.wisej.com/api/wisej.web/content/widget#options

https://docs.wisej.com/extensions/premium-extensions/overview#options

You can even set the options in the designer.

  • You must to post comments
-2
0

CKEditor is a third-party software, not developed by us. You can refer to their documentation here:

https://ckeditor.com/docs/ckeditor5/latest/features/pagination/pagination.html

-Julie

 

  • Carolina Ramirez Trillo
    Hi Julie, thank you for the quick response, I understand CKEditor is a third party software, but the thing is that to configure the editor’s pagination functionality I need to pass it during initialization, which in this particular case is handled by Wisej, This is the example provided in their docs import { Pagination } from ‘@ckeditor/ckeditor5-pagination’; DecoupledEditor .create( document.querySelector( ‘#editor’ ), { plugins: [ Pagination, /* … */ ], toolbar: [ ‘previousPage’, ‘nextPage’, ‘pageNavigation’, ‘|’, // More toolbar items. // … ], pagination: { // A4 pageWidth: ’21cm’, pageHeight: ‘29.7cm’, pageMargins: { top: ’20mm’, bottom: ’20mm’, right: ’12mm’, left: ’12mm’ } }, licenseKey: ‘your-license-key’ } ) .then( /* … */ ) .catch( /* … */ ); Is there a way I can override the object from my project? Thank you
  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.