<?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: Get Latest Tweet Using ExtJS DataView and PHP</title>
	<atom:link href="http://superdit.com/2010/07/27/get-latest-tweet-using-extjs-dataview-and-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://superdit.com/2010/07/27/get-latest-tweet-using-extjs-dataview-and-php/</link>
	<description>blogging, design, tech, and web</description>
	<lastBuildDate>Mon, 07 May 2012 19:55:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: extjstutorial.org</title>
		<link>http://superdit.com/2010/07/27/get-latest-tweet-using-extjs-dataview-and-php/comment-page-1/#comment-18961</link>
		<dc:creator>extjstutorial.org</dc:creator>
		<pubDate>Sat, 07 May 2011 14:02:05 +0000</pubDate>
		<guid isPermaLink="false">http://superdit.com/?p=1981#comment-18961</guid>
		<description>&lt;strong&gt;Get Latest Tweet Using ExtJS DataView and PHP...&lt;/strong&gt;

Recently I love twitter, even though I didn’t tweet too often, cause I found many great link from the people that I follow. In this post, I want to create a little twitter client to getting the latest tweets by specific username using ExtJS DataView, c...</description>
		<content:encoded><![CDATA[<p><strong>Get Latest Tweet Using ExtJS DataView and PHP&#8230;</strong></p>
<p>Recently I love twitter, even though I didn’t tweet too often, cause I found many great link from the people that I follow. In this post, I want to create a little twitter client to getting the latest tweets by specific username using ExtJS DataView, c&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MrRoyce</title>
		<link>http://superdit.com/2010/07/27/get-latest-tweet-using-extjs-dataview-and-php/comment-page-1/#comment-6206</link>
		<dc:creator>MrRoyce</dc:creator>
		<pubDate>Mon, 27 Sep 2010 00:02:03 +0000</pubDate>
		<guid isPermaLink="false">http://superdit.com/?p=1981#comment-6206</guid>
		<description>NP.  You know what is very cool?  When you google a phrase and then read the article and the comments and then realize that you were the one that made the comment and the suggested fix!</description>
		<content:encoded><![CDATA[<p>NP.  You know what is very cool?  When you google a phrase and then read the article and the comments and then realize that you were the one that made the comment and the suggested fix!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aditia rahman</title>
		<link>http://superdit.com/2010/07/27/get-latest-tweet-using-extjs-dataview-and-php/comment-page-1/#comment-4711</link>
		<dc:creator>aditia rahman</dc:creator>
		<pubDate>Fri, 13 Aug 2010 12:20:46 +0000</pubDate>
		<guid isPermaLink="false">http://superdit.com/?p=1981#comment-4711</guid>
		<description>thanks for the suggestion, I see, using TaskManager nice :D</description>
		<content:encoded><![CDATA[<p>thanks for the suggestion, I see, using TaskManager nice <img src='http://superdit.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MrRoyce</title>
		<link>http://superdit.com/2010/07/27/get-latest-tweet-using-extjs-dataview-and-php/comment-page-1/#comment-4175</link>
		<dc:creator>MrRoyce</dc:creator>
		<pubDate>Fri, 06 Aug 2010 19:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://superdit.com/?p=1981#comment-4175</guid>
		<description>Here is a trivial change that will do an auto update (hardcoded to every 35 seconds)

	function startTask() {
		var loadingTask = {
			run: function(){
				strTweets.load();
			},
			interval: 35000
		};
		// start the Data store load
		Ext.TaskMgr.start(loadingTask);
		
	}

    function getTweets() {
       var u = Ext.getCmp(&#039;twitter_username&#039;).getValue();
       proxyTweets.setUrl(&#039;get-tweets.php?username=&#039; + u, false);
        startTask();
        Ext.getCmp(&#039;panelBottom&#039;).setTitle(&#039;Latest Tweets From &#039; + u);
    }</description>
		<content:encoded><![CDATA[<p>Here is a trivial change that will do an auto update (hardcoded to every 35 seconds)</p>
<p>	function startTask() {<br />
		var loadingTask = {<br />
			run: function(){<br />
				strTweets.load();<br />
			},<br />
			interval: 35000<br />
		};<br />
		// start the Data store load<br />
		Ext.TaskMgr.start(loadingTask);</p>
<p>	}</p>
<p>    function getTweets() {<br />
       var u = Ext.getCmp(&#8216;twitter_username&#8217;).getValue();<br />
       proxyTweets.setUrl(&#8216;get-tweets.php?username=&#8217; + u, false);<br />
        startTask();<br />
        Ext.getCmp(&#8216;panelBottom&#8217;).setTitle(&#8216;Latest Tweets From &#8216; + u);<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aditia rahman</title>
		<link>http://superdit.com/2010/07/27/get-latest-tweet-using-extjs-dataview-and-php/comment-page-1/#comment-4063</link>
		<dc:creator>aditia rahman</dc:creator>
		<pubDate>Fri, 06 Aug 2010 02:19:44 +0000</pubDate>
		<guid isPermaLink="false">http://superdit.com/?p=1981#comment-4063</guid>
		<description>nice suggestion, maybe on the next post, hope I have some time to exporing it</description>
		<content:encoded><![CDATA[<p>nice suggestion, maybe on the next post, hope I have some time to exporing it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MrRoyce</title>
		<link>http://superdit.com/2010/07/27/get-latest-tweet-using-extjs-dataview-and-php/comment-page-1/#comment-3950</link>
		<dc:creator>MrRoyce</dc:creator>
		<pubDate>Thu, 05 Aug 2010 13:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://superdit.com/?p=1981#comment-3950</guid>
		<description>Very nice tutorial.  Thanks - How about an autoupdate feature?</description>
		<content:encoded><![CDATA[<p>Very nice tutorial.  Thanks &#8211; How about an autoupdate feature?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

