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
ldChrisldChris 

richtext="true" not saving

I am not able to save using the default rich text editor:

I am trying to use:

Code:
<apex:inputtextarea id="editor" rows="10" style="width:100%;" value="{!Object_Name__c.html_source__c}" richtext="true"/>

 If I take out the richtext="true" and use
Code:
<apex:inputtextarea id="editor" rows="10" style="width:100%;" value="{!Object_Name__c.html_source__c}"/>

It works fine.

Thanks,
Chris
 





Message Edited by ldChris on 01-19-2009 03:52 PM
andresperezandresperez
Hi,
 
I recently developed a site that uses the rich text editor and I had no issues.
 
Could you please provide more information. What happens when you save? What error do you get?
EchoEchoEchoEcho
I'm having the same problem, and I'm not getting any errors. When I set richtext to false, it works fine, when I set richtext to true, the field just doesn't update.
ehartyeehartye
I'm having this exact issue. Were you able to find an answer?