Hi guys, i been doing few weeks and i unable to intergrate ckfinder and ckeditor images in MVC4 asp.net
can anyone have a example of the intergration? thanks!
i tried add the ckeditorreplace but it doesnt work :(
(config.js file)
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
CKEDITOR.replace( "ckecontent",
{
filebrowserBrowseUrl: 'Content/ckfinder/ckfinder.html',
filebrowserImageBrowseUrl: 'Content/ckfinder/ckfinder.html?type=Images',
filebrowserFlashBrowseUrl: 'Content/ckfinder/ckfinder.html?type=Flash',
filebrowserUploadUrl: 'Content/ckfinder/core/connector/java/connector.java?command=QuickUpload&type=Files',
filebrowserImageUploadUrl: 'Content/ckfinder/core/connector/java/connector.java?command=QuickUpload&type=Images',
filebrowserFlashUploadUrl: 'Content/ckfinder/core/connector/java/connector.java?command=QuickUpload&type=Flash'
} );
};
create.cshtml
<div class="editor-field">
@* <textarea class="ckeditor" id="ckeContent" rows="5" name="QuestionContent"></textarea>*@
@Html.TextAreaFor(model => model.QuestionContent,new {@id="ckeContent"})
<script type ="text/javascript">
CKEDITOR.replace("ckeContent")
</script>
I'm sure it's just a
I'm sure it's just a misconfiguration issue. If you have a license, you should contact CKSource support.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
i tryijng out the demo
i tryijng out the demo version before purchasing. i need to find out which file or where to implement this code below. anyone?