Is there any plans to release a fck editor driven web part.
I am just finishing of a c# class file (web part) that fit straight into the ASP.Net Web Portal feature and uses fck editor for updating, it also uses the web portals editor zone to display the fck editor in (nice, toke me ages to find out how to do it).
Shall i post the code up when i have finished. Might be of some use.
I am just finishing of a c# class file (web part) that fit straight into the ASP.Net Web Portal feature and uses fck editor for updating, it also uses the web portals editor zone to display the fck editor in (nice, toke me ages to find out how to do it).
Shall i post the code up when i have finished. Might be of some use.
Re: Asp.net c# Web Part
The current ASP.NET implementation is as a server control. If your implementation provides some new and useful functionality then maybe it could be included in the FCKeditor.NET package. I'd certainly be interested in seeing how you've done it, perhaps it could help with my ASP.NET AJAX woes!
Re: Asp.net c# Web Part
I have converted all the fckeditor files as embedded resources in my server control assembly but it does not find them, did you encounter this issue?
Re: Asp.net c# Web Part
@pissed pat, It would be nice to take a look at your code. I would ask you to please open a ticket at our dev site, attaching your code to it.
@serializer, take a look at: http://msdn.microsoft.com/en-us/library/hhy9ewf1.aspx
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
Re: Asp.net c# Web Part
Re: Asp.net c# Web Part
Is it possible to have a JavaScript function that calculates the web resource name?
We could think about changes in the CKEditor API. All resources references could be replaced by a static function call (let's call it getUrl). We could have calls like getUrl( 'core/config.js' ) or getUrl( 'skins/default/editor.css' ) which are paths relative to the root of the editor code. I think it would be useful not only to make it possible to have WebResources with ASP.Net, but also in other cases.
I think I'll implement this feature in the JavaScript side in any case. But, will it help us in the WebResource stuff?
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
Re: Asp.net c# Web Part
<%=WebResource("CKEditor.Dialogs.FileUpload.html")%>
And it gets replaced with the URL to that resource.
So it would be possible to output, say, a .js file with a hashtable just containing WebResource urls to every other required resource. It could get quite complex with all the other .html files used for dialogs - but definitely possible; so the entire editor could be packaged into a single .dll.
Re: Asp.net c# Web Part
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn