BakshinderSingh

Results 2 comments of BakshinderSingh

Looking for the same thing in my project also. We have a requirement of implementing that the mention functionality should work from button in our project.

Hi @RamyAlReedy , Using the code below I am able to put a mention in Quill Editor using button outside editor. const selection = selectedEditor.getSelection(true); selectedEditor.focus(); selectedEditor.insertText(selection.index, '@'); selectedEditor.blur(); selectedEditor.focus();...