Is there any reason the .NET CKEditor control should not work under Mono? I have several other .NET plugins working such as ImageResizer, that work fine.
The CKEditor plugin works great on my local machine, but when I deploy the solution to my Apache server with mod_mono plugin, I get a normal text area loading in the page, with no CKEditor.
I am fairly new to Mono, so I may have missed a step or done something stupid.
Any ideas or things I should check?
The CKEditor plugin works great on my local machine, but when I deploy the solution to my Apache server with mod_mono plugin, I get a normal text area loading in the page, with no CKEditor.
I am fairly new to Mono, so I may have missed a step or done something stupid.
Any ideas or things I should check?
Re: Mono
Re: Mono
Hi,
it seems we somehow missed Mono support while working on the control. I created a ticket for this on our tracker: http://dev.ckeditor.com/ticket/8702
Thanks for reporting this!
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Mono
Re: Mono
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Mono
In case anyone is interested, here are the steps:
(1) Download and unzip all files into a sub folder of your ASP.NET project
(2) Add ckeditor.js to the .aspx page that should display the editor
(3) Add the following code to your .aspx page:
<asp:TextBox ID="TextBox1" runat="server" CssClass="ckeditor" Height="299px" Width="100%" TextMode="MultiLine"></asp:TextBox>
Works perfectly!
Re: Mono
Thanks for the suggestion,
Thanks for the suggestion, but how do I then use to ckfinder?
With asp.net CKEditor to put these two lines:
FilebrowserImageBrowseUrl = "~/ckfinder/ckfinder.html?type=Images"
FilebrowserImageUploadUrl = "~/ckfinder/core/connector/aspx/connector.aspx?command=QuickUpload&type=Images"
BUT if you use the common TextBox as I do?