Hi,
I am trying to incorporate the inline editing functionality of ckeditor with my visualforce pages.
I have rich text field created as a custom field for the custom object and the code is as follows
<div contenteditable="true"> dfdf : <apex:inputtextarea value="{!templateInfo.RichTextArea__c}" styleClass="ckeditor" richtext="false"/> </div>
The problem is the rich text input through ckeditor is not being saved, where as if I do this.
<apex:inputTextarea value="{!templateInfo.RichTextArea__c}" styleClass="ckeditor" richtext="false"/>
without the div and the contenteditable attribute then the rich text content is saved.
Does ckeditor not work with inline mode for visualforce?
Has anyone tried something similar to this before?
I need help as well
I have a rich text area which uses the ckeditor for formatting etc . However when i try to save it to salesforce it does not work which means that salesforce is not able to save it . How can we fix it .