Page 1 of 1

Using CKEditor in List Forms

Posted: 16 Apr 2015
by Justin Peszleny
Hi,

I am attempting to use ckeditor (http://ckeditor.com/) inside a forms designer form. I have some very weird and unexpected behavior. If I add a link to the ckeditor script on my form, any people picker fields automatically transform into a ckeditor without initializing anything (shown below). Multiple line textboxes with enhanced rich text have the same effect as well.

Image

Does any one have any suggestions on why this is happening? I am open to alternatives as well. I need some kind of rich text editor where users can format their text with bullet points and such.

Re: Using CKEditor in List Forms

Posted: 18 Apr 2015
by Jdubs
SharePoint as a built-in rich text editor. I'd suggest using that one.


Create a field in SharePoint, and select the "Multi Text" option (this will change the options that appear below).


At the very bottom, you'll have an option to use plain text or rich text (I believe rich text is the default option).


This will give your users to use bullets and such.

Re: Using CKEditor in List Forms

Posted: 05 May 2015
by Tuan Thanh Dang
You should try this in config.js file:



CKEDITOR.editorConfig = function( config ) {

config.removePlugins = 'floatingspace';

};