Тёмный

How to integrate CKEditor with Angular | Custom build of CKEditor 5 | Rich text editor | Nirmal Gope 

Nirmal Gope
Подписаться 58
Просмотров 6 тыс.
50% 1

In this video all the steps are done by following official documentation of CKEditor 5 . Here we can learn how to make a custom build of this rich text editor.

Хобби

Опубликовано:

 

19 июл 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 26   
@cockatooadam
@cockatooadam 10 месяцев назад
you saved my life you dont even know how much i appreaciate this thanks bro to the moon back to india and back
@nirmal_gope
@nirmal_gope 10 месяцев назад
Thanks for your appreciation :)
@gauravshrestha3136
@gauravshrestha3136 20 дней назад
What is the angular version you are using
@sandroarzapalo9332
@sandroarzapalo9332 8 месяцев назад
Nice video! Thanks your so much. (PE)
@Dhinakarp
@Dhinakarp 7 месяцев назад
Could you guide me on how to add the **mention** plugin with a custom builder and how to integrate the same in angular ??
@nirmal_gope
@nirmal_gope 7 месяцев назад
Watch this video very carefully, then you can do it. Best of luck 🙂
@chinthuspillai4964
@chinthuspillai4964 7 месяцев назад
But when doing the angular build its showing could not resolve this path issue . is there any specific steps needed to be done when doing angular build. also my custom build give ts files also
@nirmal_gope
@nirmal_gope 4 месяца назад
It's hard to answer without seeing your project structure. I would recommend that you create a new project and follow the instructions in this video very carefully. If you miss a single step, then you may encounter an error. If your new project works, then compare it with your existing project to find out where you might have made a mistake. Best wishes.
@rameshneelapala8152
@rameshneelapala8152 4 месяца назад
I am watching this videos step by step but error in ts "Cannot find module 'ckeditor5-custom-build/build/ckeditor' or its corresponding type declarations.ts(2307)"
@nirmal_gope
@nirmal_gope 4 месяца назад
1. Have you imported the "CKEditorModule" in app.module.ts file? (in this video 2:30 min) 2. Have you renamed the dowloaded file to "ckeditor5-custom-build" ? (in this video 6:30 min) 3. Have you unpacked it into the project's main directory? (in this video 6:54 min)
@sumansinha7338
@sumansinha7338 5 месяцев назад
Can I add additional plugins in the downloaded build. If Yes then how?
@nirmal_gope
@nirmal_gope 5 месяцев назад
Follow the instructions of this video (specially from 4:00 min). Now delete or replace the existing folder of custom build plugins. Before making any changes to your CKEditor custom build, or adding new plugins as described, it's crucial to back up your project. This ensures that you have a recovery point in case something goes wrong during the process. Hope for the best ✌
@user-cz7wt2kp6w
@user-cz7wt2kp6w 9 месяцев назад
I am new to ckeditor. I have to create custom plugins. Can you help me creating custom plugins?
@nirmal_gope
@nirmal_gope 7 месяцев назад
Watch this video very carefully, then you can do it. Best of luck 🙂
@durgeshchirmade2364
@durgeshchirmade2364 2 месяца назад
i get a error of window not found and SSR error
@nirmal_gope
@nirmal_gope 2 месяца назад
These problems typically occur in server-side rendering (SSR) environments like Angular Universal, where JavaScript code tries to access the window object or other browser-specific globals that don't exist in a Node.js server environment.
@avilio7015
@avilio7015 2 месяца назад
@@nirmal_gope is there any solution to that, i really need SSR for my project but im unable to use any rich text editor
@nirmal_gope
@nirmal_gope 2 месяца назад
@@avilio7015 Import the CKEditorModule into the module where you intend to use the editor. @NgModule({ imports: [BrowserModule.withServerTransition({ appId: 'serverApp' }), CKEditorModule], }) Since CKEditor relies on the browser's DOM, you need to ensure it is only loaded and instantiated in the client-side environment. This can be managed by using Angular's platform ID to check if the code is running on the server or the client. import { Component, Inject, PLATFORM_ID } from '@angular/core'; import { isPlatformBrowser } from '@angular/common'; @Component({ selector: 'app-root', template: `` }) export class AppComponent { public Editor = ClassicEditor; public isBrowser: boolean = false; constructor(@Inject(PLATFORM_ID) private platformId: Object) { this.isBrowser = isPlatformBrowser(this.platformId); } } Remember to conditionally load CKEditor components and scripts only on the client side.Ensure that during server-side rendering, CKEditor does not attempt to execute any code that would require a DOM. Test your application in both server-rendered and client-side scenarios to ensure stability and functionality.
@paulh6933
@paulh6933 11 месяцев назад
CKEditor 5 is not free, correct?
@nirmal_gope
@nirmal_gope 11 месяцев назад
No. If you use premium plugins on it, you have to pay. Otherwise it's free.
@chadcummings4600
@chadcummings4600 10 месяцев назад
Good video, but I noticed you skipped the step where they say to install the ckeditor5-custom-build `npm install ./ckeditor5-custom-build`
@nirmal_gope
@nirmal_gope 10 месяцев назад
Watch this part (7:08) very carefully in this video.
@curtiss5781
@curtiss5781 7 месяцев назад
your intro sound is not enjoyable
@nirmal_gope
@nirmal_gope 7 месяцев назад
Thank you for sharing your thoughts about the intro sound. I always appreciate feedback as it helps me improve.
@SonaliAkshatPathak
@SonaliAkshatPathak 2 месяца назад
ckeditor.js:6 Uncaught CKEditorError: ckeditor-duplicated-modules can u plz help me
@nirmal_gope
@nirmal_gope 2 месяца назад
It indicates that there are duplicated CKEditor modules being imported or instantiated in your project. Ensure that you haven't imported CKEditor modules more than once across your Angular application. This includes checking all scripts in your index.html, Angular component files, and any dynamically loaded scripts that might be adding CKEditor again. Ensure all CKEditor-related packages are up to date and compatible with each other. You might need to update or downgrade some packages to achieve compatibility.
Далее
UI Libraries Are Dying, Here's Why
13:28
Просмотров 274 тыс.
КАКОЙ У ТЕБЯ ЛЮБИМЫЙ МАРМЕЛАД?
00:40
CkEditor In ReactJs - Interactive Editor In ReactJs
11:22
quill textEditor for Angular
2:49
Просмотров 3,8 тыс.
These Coding Projects Give You An Unfair Advantage
14:39
Integration of  Default  CKEDITOR5 with Angular 11
6:10
PrimeNG Editor and its Customization - Angular
8:53
Просмотров 4,3 тыс.
Dependency Injection, The Best Pattern
13:16
Просмотров 756 тыс.
Respect 😱🔥 #shorts #respect #viral
0:31
Просмотров 39 млн
Quando ACELERA eu faço MAIS GRANA 💰
0:16
Просмотров 39 млн