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
Samrat ChakrabortySamrat Chakraborty 

<apex:inputtextArea richtext="true"> not showing option to upload image from local system

HI,
We need a VF page with a rich text box. I am using <apex:inputtextArea richtext="true"/> to deliver the functionality. the whole page is working fine but the problem comes when I want to add an image from the Local system.
How can i get my RTE to allow adding files from the Local system. Like it is happeing in this discussion forum rich text box??
Sai Ram ASai Ram A
Hi Samrat

Use this below Snippet
<apex:page>
<!--Script-->
<script src="//cdn.ckeditor.com/4.4.6/standard/ckeditor.js"></script>

    <apex:inputTextarea id="thetextarea" richtext="false" styleClass="ckeditor" />

</apex:page>

Thank you
BLearn
Samrat ChakrabortySamrat Chakraborty
Hi BLearn,
Thanks , this soulution I have tried it doesnot give me option to upload from the Local System. I need similar to the RTE field in this discussion forum