We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
I have used getDomNode to access the DOM node and attached event listener to it. Click event is working but Paste is not.
To Reproduce
I'm attaching code snippet here:
import { useState } from "react"; import Editor from "@monaco-editor/react"; export default function App() { const [value, setValue] = useState(""); const handleMount = (editor) => { editor.getDomNode().addEventListener("click", function (e) { console.log("clicked"); }); editor.getDomNode().addEventListener("paste", function (e) { console.log("pasted"); }); }; return ( <div> <Editor height="80vh" defaultLanguage="html" theme="vs-dark" onChange={(val) => setValue(val)} value={value} onMount={handleMount} defaultValue={"<div>Hello world</div>"} /> </div> ); }
Expected behavior
pasted should have logged just as clicked is getting logged.
Screenshots
Additional context
I tried this with react-monaco-editor library and it is working correctly with that.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
I have used getDomNode to access the DOM node and attached event listener to it. Click event is working but Paste is not.
To Reproduce
I'm attaching code snippet here:
Expected behavior
pasted should have logged just as clicked is getting logged.
Screenshots
Additional context
I tried this with react-monaco-editor library and it is working correctly with that.
The text was updated successfully, but these errors were encountered: