I have two editor instances on a single page. One should have the "quick insert" button, the other one should not.
I've tried setting "quickInsertButtons" in the config to either "null" or an empty array, but neither removes the quick insert button from the editor.
Is this possible?
The option pluginsEnabled can be used for that.
Hey, how can I use pluginsEnabled to disable this quick insert feature?
@starikovs pass the other plugins except the quick insert one.
can you please add a feature to disable the quick insert button?
There are 2 ways to disable the Quick Insert Button:
pluginsEnabled option.@dianaprajescu I know these options,
however, if you want to use all options but the quick insert button you have to this:
this.froalaOptions = {
pluginsEnabled: ["align", "charCounter", "codeBeautifier", "codeView", "colors", "draggable",
"embedly", "emoticons", "entities", "file", "fontFamily", "fontSize", "fullscreen", "image",
"imageManager", "inlineStyle", "lineBreaker", "link", "lists", "paragraphFormat",
"paragraphStyle", "quote", "save", "table", "url", "wordPaste"],
instead of something like:
this.froalaOptions = {
pluginsDisable: ["quickInsert"]
@AhHa45, that is true. I'm adding this to our TODO list.
I was just looking for this. Looking forward to when it gets added.
This would be so nice! 馃憦
Most helpful comment
@AhHa45, that is true. I'm adding this to our TODO list.