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 

Any rich text editor component for VF pages available?

<apex:inputTextarea richText=true>cannot be used in re-render. Its an urgent request please guide
Deepak Kumar ShyoranDeepak Kumar Shyoran
You can use <apex:inputField value="{!richTextField__c}" /> by replacing  richTextField__c with your custom field of richtext type.
Samrat ChakrabortySamrat Chakraborty
Hi Deepak, 
Thanks for the reply,

The above scenario is working for Standard Controller, how to use the same for custom controller ? 
Deepak Kumar ShyoranDeepak Kumar Shyoran
You can also use the above in same fashion either take a Instance of Object or a list of Object and then bind the RichText field in same way.

See below code it will help you.
List<Custom_Obj__c> objList {get; set;}

objList = [Select id,RichText__c from Custom_Obj__c  ] ;

<apex:repeat value="{!objList}" var="item" >
<apex:inputField value="{!item.RichText__c}" />
</apex:repeat>


Samrat ChakrabortySamrat Chakraborty
Even this alternative give the same error.
"Currently Re-render not enabled for rich text"