Press Ctrl+V to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.

Created on 28 October 2022, about 2 years ago
Updated 20 September 2023, about 1 year ago

I am getting the message below when I try to paste text into the "Body" area in one of my drupal site, but not other drupal site, I don't think this is related to my browser, please advise. Thanks

"Press Ctrl+V to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option."

💬 Support request
Status

Active

Version

1.22

Component

Miscellaneous

Created by

🇬🇧United Kingdom freelylw

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇧🇴Bolivia vacho Cochabamba

    @Pracheth the issue is about to use the GUI button "Paste from word"

  • 🇧🇷Brazil julio_retkwa Balneário Camboriú

    For anyone that is facing this you can try something like:

    CKEDITOR.on("instanceReady", function(event) {
      event.editor.on("beforeCommandExec", function(event) {
        // Show the paste dialog for the paste buttons and right-click paste
        if (event.data.name === "paste") {
          event.editor._.forcePasteDialog = true;
        }
        // Don't show the paste dialog for Ctrl+Shift+V
        if (event.data.name === "pastetext" && event.data.commandData.from === "keystrokeHandler") {
          event.cancel();
        }
      })
    });

    which will force the old dialog, looks like is something asked since 2017: https://github.com/ckeditor/ckeditor4/issues/469#issuecomment-524185244

  • 🇦🇹Austria golubovicm

    That solution works, but it doesn't do direct pasting of clipboard content, but it's opening paste popup instead.

Production build 0.71.5 2024