<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: IPWEditor &#8211; In-Place WYSIWYG Editor</title>
	<atom:link href="http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/feed/" rel="self" type="application/rss+xml" />
	<link>http://spacebug.com</link>
	<description>Keeping Software Simple, Open and Pragmatic.</description>
	<lastBuildDate>Wed, 11 Jan 2012 01:15:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: css error when creating two instance of a editor</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-33189</link>
		<dc:creator>css error when creating two instance of a editor</dc:creator>
		<pubDate>Mon, 24 Oct 2011 06:16:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-33189</guid>
		<description>I have a page where user can drag ipweditor div. For the first time when user drag the ipweditor and click on it editor(tinymce) is opening perfectly, but if user again drag any instance of it and click on it, there is css error like toolbar is a mess.

here is the code:
var ed = new tinymce.Editor(&#039;txt_hd&#039;, {
							//some_setting : 1
	theme : &quot;advanced&quot;,
	theme_advanced_toolbar_location : &quot;top&quot;,
	theme_advanced_toolbar_align : &quot;left&quot;,
	theme_advanced_buttons1 : &quot;fontsizeselect,forecolor, bold, italic, underline&quot;,
	theme_advanced_buttons2 : &quot;&quot;,
	theme_advanced_buttons3 : &quot;&quot;
							
	});

	$(&#039;.txt_hd&#039;).editable(
	{
	type: &#039;wysiwyg&#039;,
	editor: ed,
	onSubmit:function submitData(content){
	//alert(content.current);
							
    tempid =  $(this).parents(&quot;@[id]&quot;).attr(&quot;id&quot;).split(&#039;content_id_&#039;);	
             
			               //alert(tempid[1]);
						   
	new_data =  $(this).parents(&#039;.droping_box_bdy&#039;).html().replace(/\//g,&quot;endtag&quot;).replace(/&#160;/g,&#039;space&#039;).replace(/&amp;/g,&#039;ANDSIGN&#039;).replace(/:/g,&#039;COLON&#039;).replace(/#/g,&#039;HASH&#039;).replace(/100%/g,&#039;HUNDRED&#039;);
	new_data = encodeURIComponent(new_data);
	new_data = new_data.replace(/%3F/g,&#039;QUESTION&#039;);
	new_data = decodeURIComponent(new_data);
			
	id = tempid[1];
						   //alert(new_data);
						   
	event_id = ;
	
    update_hotsite_contents(event_id,new_data,id, menu_master_id);

							},
							submit : messagesDictionary[&#039;&#039;][&#039;message&#039;],
							cancel : messagesDictionary[&#039;&#039;][&#039;message2&#039;]
							});

I have to including it two times.

1. during on load of page
2.when user is dragging the module, as drag drop is happening through jquery ajax.

as no 2 event is occurred , then user click on div, css error occurs.

i think error is for this : new tinymce.Editor().

it is created more than one time.

Please help.

Thanks in advance.

Pallab</description>
		<content:encoded><![CDATA[<p>I have a page where user can drag ipweditor div. For the first time when user drag the ipweditor and click on it editor(tinymce) is opening perfectly, but if user again drag any instance of it and click on it, there is css error like toolbar is a mess.</p>
<p>here is the code:<br />
var ed = new tinymce.Editor(&#8216;txt_hd&#8217;, {<br />
							//some_setting : 1<br />
	theme : &#8220;advanced&#8221;,<br />
	theme_advanced_toolbar_location : &#8220;top&#8221;,<br />
	theme_advanced_toolbar_align : &#8220;left&#8221;,<br />
	theme_advanced_buttons1 : &#8220;fontsizeselect,forecolor, bold, italic, underline&#8221;,<br />
	theme_advanced_buttons2 : &#8220;&#8221;,<br />
	theme_advanced_buttons3 : &#8220;&#8221;</p>
<p>	});</p>
<p>	$(&#8216;.txt_hd&#8217;).editable(<br />
	{<br />
	type: &#8216;wysiwyg&#8217;,<br />
	editor: ed,<br />
	onSubmit:function submitData(content){<br />
	//alert(content.current);</p>
<p>    tempid =  $(this).parents(&#8220;@[id]&#8220;).attr(&#8220;id&#8221;).split(&#8216;content_id_&#8217;);	</p>
<p>			               //alert(tempid[1]);</p>
<p>	new_data =  $(this).parents(&#8216;.droping_box_bdy&#8217;).html().replace(/\//g,&#8221;endtag&#8221;).replace(/&nbsp;/g,&#8217;space&#8217;).replace(/&amp;/g,&#8217;ANDSIGN&#8217;).replace(/:/g,&#8217;COLON&#8217;).replace(/#/g,&#8217;HASH&#8217;).replace(/100%/g,&#8217;HUNDRED&#8217;);<br />
	new_data = encodeURIComponent(new_data);<br />
	new_data = new_data.replace(/%3F/g,&#8217;QUESTION&#8217;);<br />
	new_data = decodeURIComponent(new_data);</p>
<p>	id = tempid[1];<br />
						   //alert(new_data);</p>
<p>	event_id = ;</p>
<p>    update_hotsite_contents(event_id,new_data,id, menu_master_id);</p>
<p>							},<br />
							submit : messagesDictionary['']['message'],<br />
							cancel : messagesDictionary['']['message2']<br />
							});</p>
<p>I have to including it two times.</p>
<p>1. during on load of page<br />
2.when user is dragging the module, as drag drop is happening through jquery ajax.</p>
<p>as no 2 event is occurred , then user click on div, css error occurs.</p>
<p>i think error is for this : new tinymce.Editor().</p>
<p>it is created more than one time.</p>
<p>Please help.</p>
<p>Thanks in advance.</p>
<p>Pallab</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wes</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-12121</link>
		<dc:creator>Wes</dc:creator>
		<pubDate>Sat, 22 Jan 2011 14:11:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-12121</guid>
		<description>How do I enable simple password protection prior to click or upon save?</description>
		<content:encoded><![CDATA[<p>How do I enable simple password protection prior to click or upon save?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amir Shevat</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-10286</link>
		<dc:creator>Amir Shevat</dc:creator>
		<pubDate>Mon, 20 Dec 2010 06:26:44 +0000</pubDate>
		<guid isPermaLink="false">#comment-10286</guid>
		<description>@ML - additional tweaks will have to be made..(in my todo list). if you do integrate with FCKeditor I would be happy to publish the new code.</description>
		<content:encoded><![CDATA[<p>@ML &#8211; additional tweaks will have to be made..(in my todo list). if you do integrate with FCKeditor I would be happy to publish the new code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ML</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-9400</link>
		<dc:creator>ML</dc:creator>
		<pubDate>Tue, 07 Dec 2010 14:41:19 +0000</pubDate>
		<guid isPermaLink="false">#comment-9400</guid>
		<description>Hey there.

I&#039;d like to try the plug-in, but before I do that, would it work with CKEditor (not FCKeditor) or additional tweaks will have to be made?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hey there.</p>
<p>I&#8217;d like to try the plug-in, but before I do that, would it work with CKEditor (not FCKeditor) or additional tweaks will have to be made?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wassim Halawani</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-8825</link>
		<dc:creator>Wassim Halawani</dc:creator>
		<pubDate>Wed, 24 Nov 2010 08:33:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-8825</guid>
		<description>That was very helpful, thank you for the contribution. it seems there are many who are still struggling with this in some forums, i shall reference your page. keep it up. cheers.</description>
		<content:encoded><![CDATA[<p>That was very helpful, thank you for the contribution. it seems there are many who are still struggling with this in some forums, i shall reference your page. keep it up. cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blanca</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-6786</link>
		<dc:creator>Blanca</dc:creator>
		<pubDate>Wed, 29 Sep 2010 21:35:52 +0000</pubDate>
		<guid isPermaLink="false">#comment-6786</guid>
		<description>Hi, im a problem with upload image of editor.

&quot;Forbidden

You don&#039;t have permission to access /fckeditor/editor/filemanager/browser/default/browser.html on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.&quot;

in the filemanager of my site im change permissions a 777 and the problem is the same.

when write  the url /fckeditor/editor/filemanager/browser/default/browser.html.

error
&quot;The server didn&#039;t reply with a proper XML data.Please check your configuration.&quot;</description>
		<content:encoded><![CDATA[<p>Hi, im a problem with upload image of editor.</p>
<p>&#8220;Forbidden</p>
<p>You don&#8217;t have permission to access /fckeditor/editor/filemanager/browser/default/browser.html on this server.</p>
<p>Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.&#8221;</p>
<p>in the filemanager of my site im change permissions a 777 and the problem is the same.</p>
<p>when write  the url /fckeditor/editor/filemanager/browser/default/browser.html.</p>
<p>error<br />
&#8220;The server didn&#8217;t reply with a proper XML data.Please check your configuration.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amir Shevat</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-1352</link>
		<dc:creator>Amir Shevat</dc:creator>
		<pubDate>Wed, 07 Jul 2010 16:10:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-1352</guid>
		<description>@Rico - Can you please post the relevent HTML part of your page.</description>
		<content:encoded><![CDATA[<p>@Rico &#8211; Can you please post the relevent HTML part of your page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rico</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-1279</link>
		<dc:creator>Rico</dc:creator>
		<pubDate>Tue, 06 Jul 2010 20:02:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-1279</guid>
		<description>Hey mate its looks like a very good plugin for my little PH engine however i can&#039;t manage it out - how to make multiply EDITABLE TextAreas???
Already bombed my head with stuff for like a 6 hours and can&#039;t figure it out!!

what the script? (its working with the first textarea)
&quot;

window.onload = function()
{
var oFCKeditor = new FCKeditor( &#039;content&#039; ) ;
oFCKeditor.BasePath = &quot;./editor/&quot; ;
oFCKeditor.ReplaceTextarea() ;

}

&quot;

however can&#039;t make this to work:
&quot;

var oFCKeditor2 = new FCKeditor( &#039;contact_text&#039; ) ;
oFCKeditor2.BasePath = &quot;./editor/&quot; ;
oFCKeditor2.ReplaceTextarea() ;

&quot;

Best Regards,
Rico.</description>
		<content:encoded><![CDATA[<p>Hey mate its looks like a very good plugin for my little PH engine however i can&#8217;t manage it out &#8211; how to make multiply EDITABLE TextAreas???<br />
Already bombed my head with stuff for like a 6 hours and can&#8217;t figure it out!!</p>
<p>what the script? (its working with the first textarea)<br />
&#8221;</p>
<p>window.onload = function()<br />
{<br />
var oFCKeditor = new FCKeditor( &#8216;content&#8217; ) ;<br />
oFCKeditor.BasePath = &#8220;./editor/&#8221; ;<br />
oFCKeditor.ReplaceTextarea() ;</p>
<p>}</p>
<p>&#8221;</p>
<p>however can&#8217;t make this to work:<br />
&#8221;</p>
<p>var oFCKeditor2 = new FCKeditor( &#8216;contact_text&#8217; ) ;<br />
oFCKeditor2.BasePath = &#8220;./editor/&#8221; ;<br />
oFCKeditor2.ReplaceTextarea() ;</p>
<p>&#8221;</p>
<p>Best Regards,<br />
Rico.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amir Shevat</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-114</link>
		<dc:creator>Amir Shevat</dc:creator>
		<pubDate>Fri, 09 Apr 2010 14:02:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-114</guid>
		<description>Thanks, got several emails and comments about this issue. Managed to get this bugfix into 1.2.1.

Cheers
Amir Shevat</description>
		<content:encoded><![CDATA[<p>Thanks, got several emails and comments about this issue. Managed to get this bugfix into 1.2.1.</p>
<p>Cheers<br />
Amir Shevat</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anonymous</title>
		<link>http://spacebug.com/projects/ipweditor_in-place_wysiwyg_editor/comment-page-1/#comment-111</link>
		<dc:creator>anonymous</dc:creator>
		<pubDate>Mon, 05 Apr 2010 01:57:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-111</guid>
		<description>Good job first of all, it will be very handy :-)

After banging my head for an hour, found out you got a very stellar bug with the tinyMCE implementation. I couldn&#039;t specify custom settings for the editor at all. The bug is on (or around) line 152. It reads:

ed.setting = options.editor.setting;

but should be:

ed.settings = options.editor.settings;</description>
		<content:encoded><![CDATA[<p>Good job first of all, it will be very handy <img src='http://spacebug.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>After banging my head for an hour, found out you got a very stellar bug with the tinyMCE implementation. I couldn&#8217;t specify custom settings for the editor at all. The bug is on (or around) line 152. It reads:</p>
<p>ed.setting = options.editor.setting;</p>
<p>but should be:</p>
<p>ed.settings = options.editor.settings;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

