Hello @ NoCodeDataArtisan
I am currently using the Quill Rich Text Editor plugin with the preset custom configuration and only the bullet points ([{“list”:“bullet”}]) for my app. The content from the Quill input field is saved as HTML. Users have the option to either edit previously saved text or create new text entries.
a) When a user wants to edit existing text, the initial content should be loaded from the database and displayed in the editor.
b) When a user wants to create a new text entry, the editor should be empty.
Issue a)
The text is not displayed:
If I inspect the editor, I find my text/content here while all previous content options are empty:
as well as here:
After refresh I see the saved text:
and if I inspect the editor I see my text in Editors Contents (Delta), Editor Text (plain text) and Delta (Last Changes), HTML, and Initial Content:
What do I need to change so that the saved text is displayed without refresh?
Issue b) If a user wants to create a next entry, the text box is prefilled with the last text I opened while I want it to be empty.
And inspecting the text shows the last opened text in Editors Contents (Delta), Editor Text (plain text) and Delta (Last Changes), HTML, just as descripted for issue a). The only difference is that Initial Content is empty.
Any idea how I can ensure everything is empty?
Any help is highly appreciated. Thank you in advance.