<?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: How to integrate a jQuery plugin into Yii Framework</title>
	<atom:link href="http://dorkage.net/blog/2009/11/13/how-to-integrate-a-jquery-plugin-into-yii-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://dorkage.net/blog/2009/11/13/how-to-integrate-a-jquery-plugin-into-yii-framework/</link>
	<description>überblog geek life, humour, insights, and meta stuff</description>
	<lastBuildDate>Thu, 31 Mar 2011 15:54:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
	<atom:link rel="hub" href="http://superfeedr.com/hubbub" />
		<item>
		<title>By: Colleen</title>
		<link>http://dorkage.net/blog/2009/11/13/how-to-integrate-a-jquery-plugin-into-yii-framework/comment-page-1/#comment-3962</link>
		<dc:creator>Colleen</dc:creator>
		<pubDate>Thu, 31 Mar 2011 15:54:14 +0000</pubDate>
		<guid isPermaLink="false">http://dorkage.net/?p=975#comment-3962</guid>
		<description>fair enough, except that this article is about how to break it up and put it in, and which plugin you use doesn&#039;t matter.  So no, don&#039;t put that nearly two years old code into your yii, but the technique is still worth looking at if you don&#039;t have a clue.</description>
		<content:encoded><![CDATA[<p>fair enough, except that this article is about how to break it up and put it in, and which plugin you use doesn&#8217;t matter.  So no, don&#8217;t put that nearly two years old code into your yii, but the technique is still worth looking at if you don&#8217;t have a clue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pavlm</title>
		<link>http://dorkage.net/blog/2009/11/13/how-to-integrate-a-jquery-plugin-into-yii-framework/comment-page-1/#comment-3845</link>
		<dc:creator>pavlm</dc:creator>
		<pubDate>Sat, 26 Mar 2011 14:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://dorkage.net/?p=975#comment-3845</guid>
		<description>this article is obsolete.
use CStarRating instead of this code.</description>
		<content:encoded><![CDATA[<p>this article is obsolete.<br />
use CStarRating instead of this code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kirill</title>
		<link>http://dorkage.net/blog/2009/11/13/how-to-integrate-a-jquery-plugin-into-yii-framework/comment-page-1/#comment-3309</link>
		<dc:creator>Kirill</dc:creator>
		<pubDate>Sun, 20 Feb 2011 10:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://dorkage.net/?p=975#comment-3309</guid>
		<description>I think, there should be
Yii::app()-&gt;getClientScript()-&gt;registerCoreScript(&#039;jquery&#039;);

instead of:

Yii::app()-&gt;clientScript-&gt;registerCoreScript(‘jquery’);</description>
		<content:encoded><![CDATA[<p>I think, there should be<br />
Yii::app()-&gt;getClientScript()-&gt;registerCoreScript(&#8216;jquery&#8217;);</p>
<p>instead of:</p>
<p>Yii::app()-&gt;clientScript-&gt;registerCoreScript(‘jquery’);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: optimus prime</title>
		<link>http://dorkage.net/blog/2009/11/13/how-to-integrate-a-jquery-plugin-into-yii-framework/comment-page-1/#comment-2751</link>
		<dc:creator>optimus prime</dc:creator>
		<pubDate>Sun, 09 Jan 2011 13:13:46 +0000</pubDate>
		<guid isPermaLink="false">http://dorkage.net/?p=975#comment-2751</guid>
		<description>I know this comment is really weird 
Can i use your RSS news for my &lt;STRONG&gt;artificial intelligence&lt;/STRONG&gt;? 

thanks a lot
the big experiment &lt;a href=&quot;http://www.therobot.es&quot; rel=&quot;nofollow&quot;&gt;TheRobot&lt;/A&gt;</description>
		<content:encoded><![CDATA[<p>I know this comment is really weird<br />
Can i use your RSS news for my <strong>artificial intelligence</strong>? </p>
<p>thanks a lot<br />
the big experiment <a href="http://www.therobot.es" rel="nofollow">TheRobot</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vitaly</title>
		<link>http://dorkage.net/blog/2009/11/13/how-to-integrate-a-jquery-plugin-into-yii-framework/comment-page-1/#comment-2615</link>
		<dc:creator>Vitaly</dc:creator>
		<pubDate>Thu, 25 Nov 2010 18:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://dorkage.net/?p=975#comment-2615</guid>
		<description>Thanks. It did help. But I just made it simple, enough for my need for now. So, I just pasted code in front page view))) Look:

Yii::app()-&gt;clientScript-&gt;registerCoreScript(&#039;jquery&#039;); 

$cs=Yii::app()-&gt;clientScript;
$cs-&gt;registerScriptFile(Yii::app()-&gt;baseUrl . &#039;/common/js/jquery/fancybox/jquery.fancybox-1.3.1.pack.js&#039;, CClientScript::POS_HEAD);
$cs-&gt;registerScriptFile(Yii::app()-&gt;baseUrl . &#039;/common/js/jquery/fancybox/jquery.mousewheel-3.0.2.pack.js&#039;, CClientScript::POS_HEAD);
$cs-&gt;registerCssFile(Yii::app()-&gt;baseUrl . &#039;/common/js/jquery/fancybox/jquery.fancybox-1.3.1.css&#039;);</description>
		<content:encoded><![CDATA[<p>Thanks. It did help. But I just made it simple, enough for my need for now. So, I just pasted code in front page view))) Look:</p>
<p>Yii::app()-&gt;clientScript-&gt;registerCoreScript(&#8216;jquery&#8217;); </p>
<p>$cs=Yii::app()-&gt;clientScript;<br />
$cs-&gt;registerScriptFile(Yii::app()-&gt;baseUrl . &#8216;/common/js/jquery/fancybox/jquery.fancybox-1.3.1.pack.js&#8217;, CClientScript::POS_HEAD);<br />
$cs-&gt;registerScriptFile(Yii::app()-&gt;baseUrl . &#8216;/common/js/jquery/fancybox/jquery.mousewheel-3.0.2.pack.js&#8217;, CClientScript::POS_HEAD);<br />
$cs-&gt;registerCssFile(Yii::app()-&gt;baseUrl . &#8216;/common/js/jquery/fancybox/jquery.fancybox-1.3.1.css&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skatox</title>
		<link>http://dorkage.net/blog/2009/11/13/how-to-integrate-a-jquery-plugin-into-yii-framework/comment-page-1/#comment-1944</link>
		<dc:creator>Skatox</dc:creator>
		<pubDate>Wed, 13 Jan 2010 20:57:07 +0000</pubDate>
		<guid isPermaLink="false">http://dorkage.net/?p=975#comment-1944</guid>
		<description>Thanks for this tutorial, it helped me a lot.</description>
		<content:encoded><![CDATA[<p>Thanks for this tutorial, it helped me a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: salv</title>
		<link>http://dorkage.net/blog/2009/11/13/how-to-integrate-a-jquery-plugin-into-yii-framework/comment-page-1/#comment-1809</link>
		<dc:creator>salv</dc:creator>
		<pubDate>Fri, 11 Dec 2009 20:50:22 +0000</pubDate>
		<guid isPermaLink="false">http://dorkage.net/?p=975#comment-1809</guid>
		<description>hai.. can u help me...
im newbie for this framework and need help.

can i have chat with u?? u have yahoo messenger, etc, thanks!!</description>
		<content:encoded><![CDATA[<p>hai.. can u help me&#8230;<br />
im newbie for this framework and need help.</p>
<p>can i have chat with u?? u have yahoo messenger, etc, thanks!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

