what would I have to do to get the new HTML Editor ajax control to work as a sharepoint content editor webpart? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T05:18:42Zhttp://stackoverflow.com/feeds/question/864874http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/864874/what-would-i-have-to-do-to-get-the-new-html-editor-ajax-control-to-work-as-a-shar0what would I have to do to get the new HTML Editor ajax control to work as a sharepoint content editor webpart?Aidan2009-05-14T18:14:50Z2009-05-15T04:05:41Z
<p>Microsoft have just released a few new ajax controls including an ajaxed up HTML editor control. </p>
<p><a href="http://www.asp.net/learn/Ajax-Control-Toolkit/tutorial-50-cs.aspx" rel="nofollow">http://www.asp.net/learn/Ajax-Control-Toolkit/tutorial-50-cs.aspx</a></p>
<p>I would like to try this in sharepont (as the built in sharepoint one is awful (no cross browser at all and flaky on IE) I tried the Telerik free one but it was not very stable.</p>
<p>I guess that getting the control up on a page won't be too hard, but how do I make sure the resulting HTML is stored in the Sharepoint way(tm)?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/864874/what-would-i-have-to-do-to-get-the-new-html-editor-ajax-control-to-work-as-a-shar/866879#8668791Answer by JD for what would I have to do to get the new HTML Editor ajax control to work as a sharepoint content editor webpart?JD2009-05-15T03:40:10Z2009-05-15T03:40:10Z<p>There is really nothing you need to do to format the HTML for SharePoint. If you are working with a field control you can expect that SharePoint will strip out a lot of the HTML from your control. </p>
http://stackoverflow.com/questions/864874/what-would-i-have-to-do-to-get-the-new-html-editor-ajax-control-to-work-as-a-shar/866936#8669361Answer by Tom Clarkson for what would I have to do to get the new HTML Editor ajax control to work as a sharepoint content editor webpart?Tom Clarkson2009-05-15T04:05:41Z2009-05-15T04:05:41Z<p>If you intend to replace the standard SharePoint rich text editor, you would likely find it much easier to use jQuery than the ajax control toolkit. The MS ajax controls have a server component - you may be able to get it into a custom column type, but it's going to be a lot easier if you just replace the textbox with something better clientside.</p>
<p>The standard control works in a similar way - a standard textbox containing html is created on the server, and javascript is used to hide that and connect it to the rich text editor.</p>