Basically these events are getting the text values from the caret position backwards, similar to the use case of a previous user from this thread @viancadupalco.asus
As you can see here:
The issue lies when my app finishes inserting texts the value the Get text Quilleditor A values resets (goes blank), I have to either click on the editor again or type inside the editor first to activate the get text quilleditor A values.
BUT I notice when my app finishes inserting text, the value of Selection Start Index gets updated. So I figured if I can trigger the event (getting text values backwards) during this time then it will solve my problems.
But maybe you can show me an example if there is another way?
The updated version of the plugin has been released, featuring the Undo/Redo capability for the editor. Undo is set as the default action. To perform a Redo, simply switch the Is Redo field to Yes.
We would be grateful if you could take a moment to review the plugin and share your thoughts with others. Your insights can guide future users in their decision-making process.
Maybe this is a newbie question but I am seeing a coupe of thing sI would like to change.
1.In my editor text colour is set to a shade of blue, however, when I paste other text then the colour appears in the original text colour. I would like to change the colour to my editor default font colour.
2.The placeholder colour seems black even though I have set it to blue.
Hi! Thanks for the plugin, I tested a bunch of them for my use case and this one seems to be the best! I have the same question - about content display.
I can save the content into database in two formats: either plain text or delta content (w/ code). So if the user saves their content and then get back in a while, they see it either without styling they applied (only plain text) of with code. How do I make it visible in the styling they applied and without code?
Actually, it’s not code; it’s a JSON that informs the editor about the text’s formatting. You simply save the content (delta) in the database as a text field and retrieve it from the database when needed.
Similarly, you can handle HTML in the same manner as the delta.
To display them, you can utilize the editor (in read-only mode with the toolbar hidden) when using the content (delta)/HTML, or you can embed the HTML into an HTML element.
Please inform me if you require further explanation, or share more details about your use case so I can offer you more tailored guidance.
Having an issue with adding Fonts in the Plugin appearance setting.
Here’s a list of fonts that I’ve added
Adobe Garamond, Baskerville, Bembo, Bodoni, Book Antiqua, Bookman, Cambria, Caslon, Century Schoolbook, Clarendon, Constantia, Didot, Georgia, Goudy Old Style, Hoefler Text, Libre Baskerville, Merriweather, Minion, Palatino, Times New Roman
In reality, the feature does not work by presenting fonts for selection. Rather, it automatically chooses the first Serif-style font depending on the fonts that are available in the user’s browser.
Thanks for your reply. TBH, that’s sad that we can not provide a list of fonts as it is pretty much written in the documentation.
Maybe you can add font feature parity with Bubble’s own RTE so that we have a default list of fonts that matches the one in RTE. That would be amazing having a predefined list of existing fonts that are not dependent on user’s browser.
Also is there way to get an IMG source URL for HTML output as well not only the delta(content) since the output for HTML images are in base64 encoded text?
Unfortunately, that format is not compatible with the Quill editor. However, if you utilize the Chat GPT (OpenAI API) to format your text, you can request it to output the text in Quill.js delta format, which can then be used as content for the plugin.
This would definitely come in handy since it’ll not depend on user’s browser but rather a set of predefined fonts. Thanks.
Not really special use case, it’s just that the output for HTML has the images encoded in base64 text values. So basically a long output with texts as description will just be too much for Bubble DB to handle even with just a couple of images saved since am storing the HTML output.
But yeah, at the moment found an alternative solution for this. Thanks.