Skip to content
New issue

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

How to detect onChange callback? #54

Open
zobweyt opened this issue Feb 15, 2023 · 0 comments
Open

How to detect onChange callback? #54

zobweyt opened this issue Feb 15, 2023 · 0 comments

Comments

@zobweyt
Copy link

zobweyt commented Feb 15, 2023

I need to use onChange event to detect changes in form and enable submit button. I tried to create an instance of editorjs in my script file, but the callback did not work:

new EditorJS({
    holderId: 'id_body_editorjs_holder',
    onChange: (api, event) => {
      console.log('changed');
    },
});

But if I create an editor from scratch without the Django plugin, then I can track this event:

<div id="editorjs"/>
<script type="module">
  new EditorJS({
    onChange: (api, event) => {
      console.log('changed');
    },
  });
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant