How to Implement / Add / Build CKEditor 5 with React.js Hook (useState)?

Поделиться
HTML-код
  • Опубликовано: 13 окт 2024
  • This tutorial will show us, How to Implement / Add / Build CKEditor 5 with React.js Hook (useState)?

Комментарии • 41

  • @MohamadMeerasa
    @MohamadMeerasa Год назад

    Bro the response from the ckeditor will be html code and if we again retrieve that data means that html code only came how can we get that equivalent text of the html code??

  • @frmngm
    @frmngm 2 года назад

    better CKEditor or Tinymce for open source use?

  • @ruggeddog3103
    @ruggeddog3103 3 года назад +2

    great tut can you make a video where you're getting all the values and storing it into a database please?

  • @khandoor7228
    @khandoor7228 4 года назад +1

    Excellent Ajay! i use CKEditor with React so i love this!!

  • @jhonata328
    @jhonata328 3 года назад

    Hi Ajay, thanks for share this knowledge. i have one doubt, i need post that data in my API and send to the database for later push the data in the frontend, but i dont now what kind of model i need to grab that data.
    if I understood correctly the data generated is like a string correct?

  • @educuanticocuantico3033
    @educuanticocuantico3033 Год назад

    Gracias por su ayuda, muy buen video..

  • @rtsky4344
    @rtsky4344 2 года назад

    is there image uploading in sucessful?

  • @tomlester8681
    @tomlester8681 3 года назад

    Do you know if there is a way to render a custom element on output? I.e. If I want to create a custom react Element that renders my images, can I make CKEdit render say, "" instead of ?

  • @shinchan4060
    @shinchan4060 3 года назад

    When we refresh the page still the data exist? Did you save the data?

  • @edu-correia
    @edu-correia 3 года назад +1

    Amazing video, helped me a lot!

  • @bassam.2023
    @bassam.2023 2 года назад +1

    This was useful. Thanks.

  • @JahangirKhan-hz7ui
    @JahangirKhan-hz7ui 2 года назад +1

    This is a great tutorial but if you could make a tutorial that how to save ckeditor data in json formate.. you can earn more views with this tutorial as well.

  • @manimegalaiv8033
    @manimegalaiv8033 4 года назад +2

    Can you please explain how to add extra plugin to creditor in react?

    • @ajayjagtap9112
      @ajayjagtap9112  4 года назад +3

      Hello Manimegalai, yes sure. I will do that in next tutorial. Thank you.

    • @emreeren1752
      @emreeren1752 3 года назад

      @@ajayjagtap9112 Hello! Did you do the tutorial? I can't find it.. Thanks..

  • @lochawala
    @lochawala 3 года назад

    Hi Ajay
    Thanks for the great tutorial
    can you please explain how to add an image resizer to it?

  • @peshutanpavri1599
    @peshutanpavri1599 2 года назад

    This doesn't work with functional components in React?

  • @raivikas200
    @raivikas200 3 года назад

    it was great and very helpful

  • @DhiaMagicien
    @DhiaMagicien 3 года назад

    Great tutorial , Thank you

  • @mohdnawazishalam3255
    @mohdnawazishalam3255 4 года назад +1

    Please explain how to add image as well ??

    • @ajayjagtap9112
      @ajayjagtap9112  4 года назад +1

      Hello, drag and drop image.

    • @shreyasbharitkar9858
      @shreyasbharitkar9858 2 года назад

      @@ajayjagtap9112 Your insta I'd please

    • @ajayjagtap9112
      @ajayjagtap9112  2 года назад

      @@shreyasbharitkar9858 sorry. I don't have account.

    • @shreyasbharitkar9858
      @shreyasbharitkar9858 2 года назад

      @@ajayjagtap9112 ok...just tell me can we replace word when user enter it in ckeditor....i have added one custom button for that but it is not working

    • @ajayjagtap9112
      @ajayjagtap9112  2 года назад

      @@shreyasbharitkar9858 I am not sure about this. First we need to check if CKEditor allow us to do this.? If yes then we can do this with JS.

  • @webdev4738
    @webdev4738 3 года назад

    Hello Ajay,
    Great !!! could you please also make one video regarding how we can add Mentions (@) in CKEditor, it will be very helpful.
    Thanks

  • @rajneeshmishra3850
    @rajneeshmishra3850 4 года назад

    Hi Ajay,
    Great explanation. I also want to use this in my project.
    Is it open source? Also, it will be helpful if you show, how to use math equations with CKEditor.

  • @poojabhandari631
    @poojabhandari631 2 года назад +1

    please provide for image upload using ckfinder

  • @nguyenvanthien8968
    @nguyenvanthien8968 2 года назад +1

    Thank bro!!!

  • @sanalms1601
    @sanalms1601 2 года назад +1

    thanks bro

  • @SunilShaukat-h4o
    @SunilShaukat-h4o Год назад

    import React, { useState } from 'react'
    import { CKEditor } from '@ckeditor/ckeditor5-react'
    import ClassicEditor from '@ckeditor/ckeditor5-build-classic'
    const Editor = () => {
    const [addData, setAddData] = useState("")
    const [addedData, setAddedData] = useState(0)
    const handleChange = (e, editor) => {
    const data = editor.getdata();
    setAddData(data);
    }
    return (

    setAddedData(!addedData)}>{addedData ? "Hide Data" : "Show Data"}


    {addedData ? addData : ""}


    )
    }
    export default Editor

  • @shamshunshams6239
    @shamshunshams6239 3 года назад

    can you send code