Completed
Last Updated: 06 Jun 2018 08:12 by Dimitar
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 31 May 2018 05:25
Category: RichTextEditor
Type: Bug Report
1
FIX. RadRichTextEditor - PrintPreview dialog is automatically closed if you added a watermark in web layout mode
To reproduce: please refer to the attached sample project and follow the steps in the gif file. 

Workaround: 

        private void radRichTextEditor1_CommandExecuting(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
        {
            if (e.Command  is ChangeIntegratedWatermarkTypeCommand && this.radRichTextEditor1.LayoutMode!= Telerik.WinForms.Documents.Model.DocumentLayoutMode.Paged)
            {
                e.Cancel = true; 
            }
        }
0 comments