cannot paste content from clipboard in Maia inside nanoflow & microflow

0
Hi all, I just stumbled upon the fact that I cannot paste the contents from the clipboard using Ctrl + v in the Maia bot inside a nanoflow & microflow. Thus I need to type the entity name instead of pasting in it. Is this intended behaviour?
asked
2 answers
1

Hello,


Yes, this is expected behavior.

Currently, the Maia bot inside microflows and nanoflows does not support pasting content using Ctrl + V. Because of this limitation, you need to manually type things like entity names instead of pasting them from your clipboard.

This is not an issue with your system or browser—it’s simply a limitation of the Maia bot interface at the moment. Hopefully, this will be improved in future updates to make it more user-friendly.


Thanks

answered
1

Actual Situation

In the question you shared:

You cannot paste contents from clipboard using Ctrl + V in the Maia bot inside a nanoflow & microflow editor.

That is NOT a Mendix runtime problem, and it is NOT intended to work inside that editor panel.

Why This Happens

Clipboard support in Studio Pro is scoped

According to the official Mendix Keyboard Shortcuts documentation:

  • Ctrl + C, Ctrl + X, Ctrl + V should work in normal text/editor panes such as:
    • Domain model editor
    • Pages editor
    • Microflow/nanoflow editors
    • Rule editors
    • Navigation editor
    • (supported everywhere in Studio Pro)

But the Maia panel inside Studio Pro is a special embedded editor (AI/chat panel) that is not a standard code or model editor.

So even though Ctrl + V is supported in Studio Pro general editors, the Maia panel sometimes does not correctly receive the keyboard focus or paste event.

This is an IDE UI limitation, not a platform logic limitation.

Official Status (Based on Mendix Community)

At the time of the question:

  • Nobody in the Mendix community has marked this as “intended behavior fixed.”
  • There is no documentation page showing that pasting in Maia works inside microflows.
  • It is a known UI focus/shortcut limitation of the embedded Maia panel.

So this is expected behavior in current Studio Pro releases.

Real World Explanation (Expert)

🔹 The Maia panel is rendered in a separate embedded context

🔹 Copy/paste works in the main editors, but not always in embedded AI fields

🔹 This is a UI layer limitation (Electron/Chromium behaviour)

🔹 It does not impact your microflow logic or application runtime

There is no Mendix platform setting that forces paste in that situation.

Workarounds (Known Working)

Since the shortcut doesn’t work reliably:

1.Try Right-Click → Paste

Right-click in the Maia input field and choose “Paste”.

This often works because it bypasses shortcut focus issues.

2.Use Shift + Insert

In some Windows versions, Shift + Insert still pastes even when Ctrl+V fails.

3.Upgrade Studio Pro

Many clipboard / shortcut related issues were fixed in later 11.x patches.

4. Clear Studio Pro Cache

Sometimes Studio Pro keyboard behaviour is inconsistent until the cache is reset:



%LocalAppData%\Mendix\StudioPro

Close Studio Pro → delete cache → restart.

What Will Not Work

  • Changing the Mendix project settings
  • Enabling clipboard actions in nanoflow/JS
  • Adding special widget support

Because this is strictly an IDE UI limitation, not an application-level limitation.

No — pasting via Ctrl+V in the Maia bot inside nanoflow/microflow editors does not reliably work in current Studio Pro builds. This is a known behavior due to how the Maia panel handles keyboard focus. Use right-click paste or update Studio Pro to the latest patch version to improve clipboard support.

answered