<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Tiny MCE or text editor for Paragraph text?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text</link>
		<description>Gravity Support Forums Topic: Tiny MCE or text editor for Paragraph text?</description>
		<language>en-US</language>
		<pubDate>Mon, 06 Apr 2026 08:28:23 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/tiny-mce-or-text-editor-for-paragraph-text" rel="self" type="application/rss+xml" />

		<item>
			<title>Chineseand on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-48256</link>
			<pubDate>Fri, 03 Feb 2012 11:06:06 +0000</pubDate>
			<dc:creator>Chineseand</dc:creator>
			<guid isPermaLink="false">48256@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;EDIT: sorry, the NicEdit site doesn't use lowercase for 'areas'..&#60;/p&#62;
&#60;p&#62;The pastie code above seems to be missing a refernce to &#34;bkLib.onDomLoaded&#34; would that be part of teh problem I'm having getting this to work?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chineseand on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-48237</link>
			<pubDate>Fri, 03 Feb 2012 00:52:39 +0000</pubDate>
			<dc:creator>Chineseand</dc:creator>
			<guid isPermaLink="false">48237@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Since my last post I've tried to add this code&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

add_filter(&#38;quot;gform_pre_render_1&#38;quot;, &#38;quot;initialize_nicedit&#38;quot;);
function initialize_nicedit($form) {

    ?&#38;gt;

    &#38;lt;script src=&#38;quot;full-URL-to-my-js-file&#38;quot; type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
    &#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
        if(window.jQuery) {
            jQuery(document).bind(&#38;#39;gform_page_loaded&#38;#39;, function(event, form_id, current_page){
                nicEditors.allTextAreas();
            });
        }
    &#38;lt;/script&#38;gt;

    &#38;lt;?php
    return $form;
}

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
 (with both 'allTextareas' and 'allTextAreas' - since the nicEdit website uses the lowercase for 'areas') but neither have worked. Do I need to reference the script from the page somehow as well? I can get it to work by adding this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script src=&#38;quot;url-to-my-js-file&#38;quot; type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;bkLib.onDomLoaded(nicEditors.allTextareas);&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to the page above the shortcode for the gravity form, but the issue that I'm seeing there is that if I reference it from the page and not via the functions.php file, if the user doesn't fill in a required field, when GF returns the page the editor options are gone (and the textareas are sometimes messed up). &#60;/p&#62;
&#60;p&#62;Any help on this would be appreciated. On a related note, people looking to clean up Word docs pasted into these fields can tweak the nicedit code with help from &#60;a href=&#34;http://www.billyswebdesign.com/blog/2009/a-customized-web-based-wysiwyg-that-can-clean-a-paste-from-ms-word/&#34; rel=&#34;nofollow&#34;&#62;this site&#60;/a&#62;.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chineseand on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-47083</link>
			<pubDate>Sun, 22 Jan 2012 15:55:20 +0000</pubDate>
			<dc:creator>Chineseand</dc:creator>
			<guid isPermaLink="false">47083@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I tried David's add-on for the functions.php file. I also added the bit of code provided at nicedit.com:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script src=&#38;quot;http://js.nicedit.com/nicEdit-latest.js&#38;quot; type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;bkLib.onDomLoaded(nicEditors.allTextAreas);&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to the top of the &#34;edit page&#34; screen in the wordpress backend just before the shortcode call to the gravity form form.&#60;/p&#62;
&#60;p&#62;The form won't recognize when text has been added to the field. &#60;/p&#62;
&#60;p&#62;Any thoughts on what might be going on there? I've tried with Ajax enabled, and with it disabled.&#60;/p&#62;
&#60;p&#62;I'm hoping to use the pagination of the form to reduce confusion when content is copied and pasted in from Word or another editor (as it is returned in html when the page returns invalidated by entry errors).&#60;/p&#62;
&#60;p&#62;Strange note: once in a while, I get an editor on the post body field, and not on the excerpt field (different pages). I've done hard refreshes, and I don't have a caching plugin enabled (buddypress site). &#60;/p&#62;
&#60;p&#62;@mendie did you find out what was happening?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-32194</link>
			<pubDate>Wed, 10 Aug 2011 11:23:22 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">32194@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@nitzs,&#60;/p&#62;
&#60;p&#62;No. There isn't any TINYMCE-specific documentation here. It's not something that's a built into the plugin (yet) so not something we're supporting or documenting here. You can check the documentation on their site for instructions on how to implement this. The paragraph fields are standard textareas so you should be able to apply the editor to those elements relatively easily.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.tinymce.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.tinymce.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There are a multitude of plugins in the repository that might make it easier for you to implement TINYMCE on the front end if you prefer to go that route.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nitin on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-32192</link>
			<pubDate>Wed, 10 Aug 2011 11:13:02 +0000</pubDate>
			<dc:creator>Nitin</dc:creator>
			<guid isPermaLink="false">32192@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Even I've been waiting for this feature since long. Is there any documentation for Tinymce integration?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mendie on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-23651</link>
			<pubDate>Tue, 19 Apr 2011 05:18:53 +0000</pubDate>
			<dc:creator>mendie</dc:creator>
			<guid isPermaLink="false">23651@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey I have a multi-page form, and the niceEdit works, but the text I put inside does not save when I go to the next page in the form. I've tried both the Ajax and non-Ajax and the results are the same. Please help! I really need a text editor for my paragraph texts!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RichardBest on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-17525</link>
			<pubDate>Thu, 03 Feb 2011 06:21:15 +0000</pubDate>
			<dc:creator>RichardBest</dc:creator>
			<guid isPermaLink="false">17525@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi David - I've tried adding the code you provided above to one of my forms, i.e., by adding it to the functions.php file (within the TwentyTen theme) but the NicEdit is not appearing. IS adding your code to functions.php and specifying the right form ID all that needs to be done?&#60;/p&#62;
&#60;p&#62;Many thanks&#60;br /&#62;
Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rovillesarate on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-15612</link>
			<pubDate>Fri, 07 Jan 2011 01:20:22 +0000</pubDate>
			<dc:creator>rovillesarate</dc:creator>
			<guid isPermaLink="false">15612@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Already got. So silly of me not to check the pastie link to check the whole script. Its already working. I am loving gravityforms more and more. Good thing I have bought the developer license. =D
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rovillesarate on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-15611</link>
			<pubDate>Fri, 07 Jan 2011 01:15:20 +0000</pubDate>
			<dc:creator>rovillesarate</dc:creator>
			<guid isPermaLink="false">15611@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am getting this error after including this to my function script&#60;br /&#62;
add_filter(&#34;gform_pre_render_3&#34;, &#34;initialize_nicedit&#34;);&#60;/p&#62;
&#60;p&#62;Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'initialize_nicedit' was given in /home1/sixeigcy/public_html/dealhummer/wp-includes/plugin.php on line 166&#60;/p&#62;
&#60;p&#62;I used this script in my form page. For some reason It just wont work with ajax based form&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://js.nicedit.com/nicEdit-latest.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
//&#38;lt;![CDATA[
        bkLib.onDomLoaded(function() { nicEditors.allTextAreas() });
  //]]&#38;gt;
  &#38;lt;/script&#38;gt;
[gravityform id=3 name=SubscriptionForm title=false description=false ajax=true]&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>David Smith on "Tiny MCE or text editor for Paragraph text?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tiny-mce-or-text-editor-for-paragraph-text#post-15568</link>
			<pubDate>Thu, 06 Jan 2011 12:05:18 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">15568@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey Rovillesarate, give this a try:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pastie.org/1434266&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/1434266&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Just paste that in your functions.php. You can bind any function that needs to be run when the a new GF ajax page is loaded to the &#60;strong&#62;gform_page_loaded&#60;/strong&#62; event.&#60;/p&#62;
&#60;p&#62;The only piece you'll want to update is...&#60;/p&#62;
&#60;p&#62;&#60;code&#62;add_filter(&#38;quot;gform_pre_render_3&#38;quot;, &#38;quot;initialize_nicedit&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The &#60;strong&#62;3&#60;/strong&#62; should be replaced with the ID of your form.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
