function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Matrix ReturnsMatrix Returns 

how to make custom Rich text area in lightning component

Hi I am not able to make rich text area in lightning component. 
Need Help with example .
Thanks in advance 
Best Answer chosen by Matrix Returns
Alain CabonAlain Cabon
Input Rich Text: A WYSIWYG editor with a customizable toolbar for entering rich text
https://developer.salesforce.com/docs/component-library/bundle/lightning:inputRichText/example

upload images with lightning:inputRichText
https://developer.salesforce.com/forums/?id=9060G000000ICIzQAO

I found it here:  Components
152 results • Filtered by None
https://developer.salesforce.com/docs/component-library/overview/components

I found the input rich text with the link above.

If you look at the link above, you can find all the ligthning component with examples and documentations.

In fact, it is really very easy to find a component (really easy, you just need to read the page here:  https://developer.salesforce.com/docs/component-library/overview/components )

All Answers

Matrix ReturnsMatrix Returns
No , I want to a Rich text area field like standard . Where i can upload image too.
Alain CabonAlain Cabon
Input Rich Text: A WYSIWYG editor with a customizable toolbar for entering rich text
https://developer.salesforce.com/docs/component-library/bundle/lightning:inputRichText/example

upload images with lightning:inputRichText
https://developer.salesforce.com/forums/?id=9060G000000ICIzQAO

I found it here:  Components
152 results • Filtered by None
https://developer.salesforce.com/docs/component-library/overview/components

I found the input rich text with the link above.

If you look at the link above, you can find all the ligthning component with examples and documentations.

In fact, it is really very easy to find a component (really easy, you just need to read the page here:  https://developer.salesforce.com/docs/component-library/overview/components )
This was selected as the best answer
Matrix ReturnsMatrix Returns
Hey Alain , Thanks for your response but sorry any of the above link doest not provide my solution 
<lightning:inputRichText /> dont have any option to upload image .
 only some basic functionality .
 :(
Avanish KAvanish K
A lightning:insertImageButton component adds an image button to the toolbar of a rich text editor. The button is used to upload an image and insert it inline. The component can only be used as a child component within the lightning:inputRichText component.
Here's an example that adds the image button to the rich text editor's toolbar
 
<aura:component>
    <lightning:inputRichText value="<b>HELLO</b>">
        <lightning:insertImageButton/>
    </lightning:inputRichText>
</aura:component>