Saw this post at CodeProject for FCKEditor. Can someone explain what about the new version?
Saw this post at CodeProject for FCKEditor. Can someone explain what about the new
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s pretty easy to do actually. First download the latest code from the website and extract it to a directory in your project (I choose /Scripts/ckeditor). Then in your view, use the same code as in the “complete sample” in this link and it should work.
Basically, the important steps are:
ckeditor.js file in the head from your view or in your master
page, however you want to do
it. This needs to be the exact location within your project (I would use the find file dialog that you can popup when editing a src attribute in visual studio so that it automatically links to the file).
Place the:
<script type=”text/javascript”>
CKEDITOR.replace( ‘editor1’ );
</script>
RIGHT AFTER your textarea and make
sure the id of the textarea is the
same in the CKEDITOR.replace()
statement.