You need to sign in to do that
Don't have an account?

Rich Text Editor not working for me... Are there any specific requirements?
Hi all,
I am simply trying to enable rich text editing for one of my custom object fields
Here's the VF code:
<apex:page standardController="MyObject__c" sidebar="false" showHeader="false" > <apex:form > <apex:outputPanel id="contentPanel"> <apex:actionRegion > <apex:pageBlock> <apex:pageBlockButtons > <apex:commandButton action="{!save}" value="Save"/> <apex:commandButton onclick="window.close();" value="Cancel"/> </apex:pageBlockButtons> <apex:pageBlockSection title="Rich Text" columns="1" collapsible="false"> <apex:inputTextArea value="{!MyObject__c.TextArea__c}" richText="true"/> </apex:pageBlockSection> </apex:pageBlock> </apex:actionRegion> </apex:outputPanel> </apex:form></apex:page>
With no rich text attribute, this works. With richText=true, the value of the inputTextArea is not even sent to the server. Do I need to have something else to enable rich text editing.
Any help appreciated.
thanks,
Vijay
A partially successful attempt at reformatting for readability :-) :
<apex:page standardController="MyObject__c" sidebar="false" showHeader="false" >
<apex:form >
<apex:outputPanel id="contentPanel">
<apex:actionRegion >
<apex:pageBlock>
<apex:pageBlockButtons>
<apex:commandButton action="{!save}" value="Save"/>
<apex:commandButton onclick="window.close();" value="Cancel"/>
</apex:pageBlockButtons>
<apex:pageBlockSection title="Rich Text" columns="1" collapsible="false">
<apex:inputTextArea value="{!MyObject__c.TextArea__c}" richText="true"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:actionRegion>
</apex:outputPanel>
</apex:form>
</apex:page>