Content not editable
See original GitHub issueI’m using Nuxt.js + Vuetify latest version with this plugin. Editor is shown in v-dialog with option :retain-focus="false"
as per docs from Vuetify. I have a strange situation in some cases that after i open dialog for second time, the tinymce content is not editable. I have inspected DOM and i can see that head and body elements of TinyMCE are empty. I’m also using v-if
directive to re-render component every time.
Any suggestions why this is happening.
This problem doesn’t occur when using Vuetify 2.1.10 and @tinymce/tinymce-vue@3.0.1.
Issue Analytics
- State:
- Created 4 years ago
- Comments:7
Top Results From Across the Web
contenteditable - HTML: HyperText Markup Language | MDN
Chrome Edge
contenteditable Full support. ChromeYes. Toggle history Full suppo...
contenteditable="caret". Experimental Full support. ChromeYes. Toggle history Full suppo...
contenteditable="events". Experimental Full support. ChromeYes. Toggle history...
Read more >How to make your content editable in HTML ? - GeeksforGeeks
In this article, we are going to see how to make the content editable using HTML. To edit the content in HTML, we...
Read more >HTML Global contenteditable Attribute - W3Schools
The contenteditable attribute specifies whether the content of an element is editable or not. Note: When the contenteditable attribute is not set on...
Read more >How to Make the Text Input Non-Editable - W3docs
In this snippet, you can find two methods of making a text input non-editable. Use either the HTML “readonly” attribute or add the...
Read more >'Contact Content' not editable | WordPress.org
Hi Themeisle and community,. In the customizer, I am not able to edit the Appearance > Customize > Frontpage Sections > Contact >...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you very much, the
eager
prop I overlooked and helped a lot.Here is my snippet of v-dialog which includes TinyMCE component:
<v-dialog v-model="dialogReply" max-width="1024px" persistent :retain-focus="false" eager>