Unplanned
Last Updated: 27 May 2026 13:59 by Sergei
Sergei
Created on: 27 May 2026 13:59
Category: Editor
Type: Bug Report
0
Read-Only Editor clear pasted text

Bug report

Reproduction of the problem

  1. Open the https://dojo.telerik.com/SSFszYRK or https://dojo.telerik.com/yYFBekrt
  2. Copy some text
  3. Select part of the text in the Editor and try to paste using Ctrl + V

Current behavior

Currently, the highlighted (selected) text dissapers.

Expected/desired behavior

The selected text should not dissapear and the content of the Editor should remain unchanged.

Workaround

kendo.ui.editor.Clipboard.fn.onpaste = function(){
        if (this.editor.body.contentEditable === "false" || this.editor.body.contentEditable === "inherit" ) {
          return;
        }
      }

Environment

  • Kendo/Telerik version: 2026.2.520
  • Browser: [all ]
0 comments