Questions tagged [ngx-quill]

ngx-quill is an open source Angular module for the quill cross-browser Rich Text editor. You can ask questions on implementing the ngx-quill library in your angular applications and extending the functionality of the library.

ngx-quill is an open source Angular module for the cross-browser Rich Text editor.

124 questions
0
votes
1 answer

Is it possible to get access to click events from quill-mention?

I would like to redirect users from editor if they click on @mention (or #tag) elements provided by quill-mention. (Angular + ngx-quill + quill-mention). Is it possible? If so, how? Or do I need another, more sophisticated editor?
embu
  • 1
  • 2
0
votes
0 answers

Format html using Quill Editor

I’m using quill editor in my template and the editor’s content is bound via [(ngModel)] to a variable in my component which is basically a text with some html tags in it. What I discovered is that if I change the variable’s value the quill editor…
bigb055
  • 198
  • 3
  • 14
0
votes
1 answer

Ngx Quill Error on production mode: Uncaught (in promise): TypeError: n.e is not a function

I receive an error after I run my angular 10 project and browse to the . The Quill text editor works great on debug mode, but on production mode it fails. Here is the error: ERROR Error: Uncaught (in promise): TypeError:…
Jasper
  • 560
  • 4
  • 15
0
votes
1 answer

How to get the quill instance from custom Embed Block

I want to add a security token in my image's src url. I created a custom block const BlockEmbed = Quill.import('blots/block/embed'); class CustomImage extends BlockEmbed { static create(d) { node.dataset.url = d.url; // How to…
coure2011
  • 40,286
  • 83
  • 216
  • 349
0
votes
1 answer

Error when trying to implement quill-better-table with quill editor component in Angular

I have try several ways of making the quill-better-table work with no success, most of the examples out there are not for Angular, I'm getting an error that says "Cannot read property 'insertTable' of undefined" I will include my code and error…
0
votes
1 answer

How can i render ngx-quill editor content from my database to a view component?

I'm working on an angular blog app that uses ngx-quill as a text editor. I had no trouble adding records to my database. the problem occurs when I try to render content, it's not showing the data. this is my details-post component HTML where I want…
Faustoma
  • 29
  • 1
  • 3
0
votes
1 answer

Quill Editor : Check for change in content in Angular?

I have implemented quill editor in Angular by creating new instance of quill and creating custom toolbar. this.quill = new Quill('#editor-container', { modules: { toolbar: '#toolbar-container' }, theme: 'snow'…
Sumit Das
  • 1
  • 1
0
votes
2 answers

Show HTML string as plain text in Angular

I'm developing a blog using Angular. There I want to show HTML string retrieved from the database as plain text (for listing each blog post's preview). The HTML rich-text was generated using ngx-quill. I can able to render the rich text by using the…
Joseph Jojo John
  • 500
  • 1
  • 7
  • 19
0
votes
0 answers

How to build angular 8 with ngx-quill?

ERROR in Directive QuillEditorBase in C:/Users/sijaw/Documents/Projects/Student Portal/staff-portal-latest/staff-portal/node_modules/ngx-quill/ngx-quill.d.ts has no selector, please add it! Cannot determine the module for class QuillEditorBase in…
0
votes
1 answer

Undefined blot inserted after embedding custom inline blot in Quill editor

I am working on twitter like user mentions for Quill editor. My custom blot code is import Quill from 'quill'; const Base = Quill.import('blots/inline'); export default class MentionBlot extends Base { static create(data) { const node =…
Abhiram V
  • 69
  • 1
  • 12
0
votes
1 answer

How can I dispaly ngx-quill rich text editor data from database to a page for view mode

I have angular project and I have used ngx-quill rich text editor, it works perfect when add new records or edit records and it stores the result in database. now I want to display the result from rich text to a component it display like…
user8456867
0
votes
2 answers

How do I implement multiple cursors in quill through Angular 8?

I am trying to implement collaborative editing in Quill , for which I am using Angular as frontend and Node at the backend. I have already setup the sharedb with mongo adapters and also ngx-quill module in the frontend. However I am confused how to…
Alec Aldrine Lakra
  • 355
  • 1
  • 4
  • 14
0
votes
2 answers

QuillJS creates a new line in
 tags

I am developing a little forum in Angular using QuillJS as the editor (https://github.com/KillerCodeMonkey/ngx-quill), and I want to add a "spoiler" to it. For now, I have a spoiler-component containing a button to hide/show some content in the view…
Alex Mougenet
  • 213
  • 3
  • 20
0
votes
0 answers

Is there any formats/token in ngx-quill similar to formats/token in quillJS editor?

I am trying to implement template functionality using ngx-quill() similar to quilljs. I am not finding proper documentation to implement the same. Can anyone help me to find?
0
votes
1 answer

Unable to store the html content and display again for edit purpose

I am working on a requirement where I have to add & edit the content using quill-editor, the data is getting stored into database that is fine but after saving again I have to retrieve it for edit purpose. My Problem: While storing the content p…
Prasad Patel
  • 707
  • 3
  • 16
  • 53
1 2 3
8
9