Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I'm working on an Angular 12 app, I've imported the style files in styles.scss, included the RichTextEditorModule in my module as for documentation and ToolbarService, LinkService, HtmlEditorService, TableService in the providers array.
In my html I have:
<ejs-richtexteditor [toolbarSettings]="toolbarModules" [quickToolbarSettings]="quickToolbar" [(value)]="englishConsent">
In the .ts file:
toolbarModules = {
items: ['Bold', 'Italic', 'Underline', 'StrikeThrough',
'FontSize', 'FontColor', 'BackgroundColor', '|',
'Formats', 'Alignments', 'OrderedList', 'UnorderedList',
'Outdent', 'Indent', '|',
'CreateLink', 'CreateTable','|', 'Undo', 'Redo']
};
quickToolbar: QuickToolbarSettingsModel = {
showOnRightClick: true,
enable: true,
table: ['TableHeader', 'TableRows', 'TableColumns', 'TableCell', '-', 'BackgroundColor', 'TableRemove', 'TableCellVerticalAlign', 'Styles']
};
When I create a table and click on it nothing happens, even in the DOM the e-rte-quick-popup element is not created, so that's not a style problem.