Hi,
I love the inline editing at ttp://nightly-v4.ckeditor.com/3466/samples/inlineall.html
I have downloaded the beta for V4 and I am trying to utilize that approach. I can get the tool bar to appear but there is no save icon displayed. I found somewhere that you need to have the div (or textarea in that case) in a form which makes sense and that's is what I've done, but no save icon.
I notice that the example provided in the link above has no save icons either. Are you able to amend that sample so it has a save icon - or let me know how to get one?
Thanks for your help, Michael
I love the inline editing at ttp://nightly-v4.ckeditor.com/3466/samples/inlineall.html
I have downloaded the beta for V4 and I am trying to utilize that approach. I can get the tool bar to appear but there is no save icon displayed. I found somewhere that you need to have the div (or textarea in that case) in a form which makes sense and that's is what I've done, but no save icon.
I notice that the example provided in the link above has no save icons either. Are you able to amend that sample so it has a save icon - or let me know how to get one?
Thanks for your help, Michael
Re: Inline editing toolbar has no save icon
In head section:
<script language="javascript">
function savedata(){
page_content_form.content_textarea.value = CKEDITOR.instances['content'].getData();
page_content_form.submit;
}
</script>
In body:
<form action="samepage.asp" method="post" name="page_content_form" id="page_content_form">
<div id="content" name="content" style="border: 1px solid #808080; font-size: 14px; padding-left: 5px; padding-right: 10px; width: 400px; height: 250px; overflow: auto;" >
Tip: Cant print forms .....
</div>
and below that a textarea this hidden:
<textarea name="content_textarea" cols="60" rows="20" id="content_textarea" style="display: none">
Tip: Cant print forms .....
</textarea>
<br>
and a save button below that:
<input type="submit" value="Save" class="submit_small" onclick="savedata();">
</form>
Re: Inline editing toolbar has no save icon
I always found that despite the popularity of CK, the documentation is seriously lacking... thanks for sharing that tip.
Helppppp
Stipo,
Thanks for your post - it has got me closer to a solution than anythingelse I can find on the subject but I still can't get the inline editor to save its contents on an aspx page - could you post your complete solution to fill in the missing details from your explanation above.
Thanks
Andy
Have you a solution for the
Do you have a solution for the post:
More then one Inline Editor
???
Agreed - clear "how to" examples would be great
For example, the /samples/jquery.html page shows a) how to have a Framed CKEditor field that includes the Save icon, and b) how to have an inline CKEditor conversion, but does not include the Save icon.
I just want the Inline version to include the Save icon on the toolbar and, when clicked, pass the CKEditor data via jquery$post to another file. That's it. Spent all day trying, still haven't got a clean answer. Seems like a super common request, to which I've found lots of articles but no functional answer.
inline editor save button?
@ericschrepel
I just want the same thing, a Save button on inline version. I googled a lot but i found nothing to solve the problem.