Word Processor Full Screen Editor

Hello

I cant find an option to expand / maximize the Word Processor to full screen mode, something similar to the Maximize functionality available by default on the Rich Text Editor.

Is it possible to implement such functionality?


Thanks


2 Replies

RT Ragu Thanigasalam Syncfusion Team April 9, 2024 05:39 PM UTC

Hi Gray,

 Currently,we are trying a workaround solution for this and once the sample is complete. We will update the details by April 12, 2024.


Regards,

Ragu T.



KM Kavitha Muralitharan Syncfusion Team April 12, 2024 10:44 AM UTC

Gary, we have attached a sample level to maximize the full-screen mode by adding a CSS. Please check that on your end and let us know if you need any further assistance.

<div id="containerDiv">
            <SfDocumentEditorContainer id="documentEditor" @ref="container" Height="590px" ServiceUrl="http://localhost:62869/api/documenteditor/" ShowPropertiesPane="false" EnableSpellCheck="true" EnableToolbar="true" EnableLocalPaste="false">
                <DocumentEditorContainerEvents Created="OnCreated" DocumentChanged="OnDocumentChange" ></DocumentEditorContainerEvents>
            </SfDocumentEditorContainer>
</div>


#containerDiv {
        bottom: 0;
        height: 100% !important;
        background: #fff;
        top: '48px';
        left: 0;
        overflow: auto;
        position: fixed;
        right: 0;
        top: 0;
        width: 100% !important;
        z-index: 999;
    }








Attachment: sample_blazor(use)_eb300f67.zip

Loader.
Up arrow icon