<?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: Using Ext JS to create LiveDataPanel &#8211; an on-demand data loading extension</title>
	<atom:link href="http://www.extjs.com/blog/2008/07/14/livedatapanel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/</link>
	<description>JavaScript UI Component Library</description>
	<lastBuildDate>Sat, 07 Nov 2009 08:34:29 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Modifiyeli Araba Resimleri</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-79811</link>
		<dc:creator>Modifiyeli Araba Resimleri</dc:creator>
		<pubDate>Thu, 05 Nov 2009 15:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-79811</guid>
		<description>You should add an config option for this.
Thanks for sharing your work with us</description>
		<content:encoded><![CDATA[<p>You should add an config option for this.<br />
Thanks for sharing your work with us</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diyet</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-79810</link>
		<dc:creator>Diyet</dc:creator>
		<pubDate>Thu, 05 Nov 2009 15:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-79810</guid>
		<description>How to use a LiveDataPanel
Setting up a live data panel is very similar to implementing an Ext.DataView. You will need to setup an Ext.data.Store (or subclass) which will hold the data you want to display and then an XTemplate to render that data. Here is the code used to create the Blog Entry demo
...</description>
		<content:encoded><![CDATA[<p>How to use a LiveDataPanel<br />
Setting up a live data panel is very similar to implementing an Ext.DataView. You will need to setup an Ext.data.Store (or subclass) which will hold the data you want to display and then an XTemplate to render that data. Here is the code used to create the Blog Entry demo<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Burç Uyumu</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-79809</link>
		<dc:creator>Burç Uyumu</dc:creator>
		<pubDate>Thu, 05 Nov 2009 15:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-79809</guid>
		<description>Aaron Conran has built a widget for the Ext JS library which provides this functionality in an easy-to-use user extension: A LiveDataPanel can enhance your site by deferring the load of additional content until the user [...]</description>
		<content:encoded><![CDATA[<p>Aaron Conran has built a widget for the Ext JS library which provides this functionality in an easy-to-use user extension: A LiveDataPanel can enhance your site by deferring the load of additional content until the user [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diyet</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-79808</link>
		<dc:creator>Diyet</dc:creator>
		<pubDate>Thu, 05 Nov 2009 15:39:56 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-79808</guid>
		<description>Using Ext JS to create LiveDataPanel – an on-demand data loading extension
Good and nice work.
Thanks for everythink.</description>
		<content:encoded><![CDATA[<p>Using Ext JS to create LiveDataPanel – an on-demand data loading extension<br />
Good and nice work.<br />
Thanks for everythink.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akvaryum</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-79807</link>
		<dc:creator>Akvaryum</dc:creator>
		<pubDate>Thu, 05 Nov 2009 15:38:33 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-79807</guid>
		<description>Good work, but the loading of the next page should occur before the user does reach the bottom of the page, like on DZone. You should add an config option for this.
Thanks for sharing your work with us.
&lt;i&gt;

// Creating the panel is easy
var p = new Ext.ux.LiveDataPanel({
    frame: true,
    title: &#039;Latest Blog Entries&#039;,
    height: 400,
    width: 590,
    itemSelector: &#039;.entry&#039;,
    tpl: Ext.XTemplate.from(&#039;tplBlog&#039;),
    store: myStore
});
p.render(&#039;entry-list&#039;);

&lt;/i&gt;
thanks for .</description>
		<content:encoded><![CDATA[<p>Good work, but the loading of the next page should occur before the user does reach the bottom of the page, like on DZone. You should add an config option for this.<br />
Thanks for sharing your work with us.<br />
<i></i></p>
<p>// Creating the panel is easy<br />
var p = new Ext.ux.LiveDataPanel({<br />
    frame: true,<br />
    title: &#8216;Latest Blog Entries&#8217;,<br />
    height: 400,<br />
    width: 590,<br />
    itemSelector: &#8216;.entry&#8217;,<br />
    tpl: Ext.XTemplate.from(&#8217;tplBlog&#8217;),<br />
    store: myStore<br />
});<br />
p.render(&#8217;entry-list&#8217;);</p>
<p><br />
thanks for .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sağlıklı Yaşam</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-79805</link>
		<dc:creator>Sağlıklı Yaşam</dc:creator>
		<pubDate>Thu, 05 Nov 2009 15:37:12 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-79805</guid>
		<description>@Ronni – There was a bug that could be reproduced by scrolling to the bottom very quickly and then immediately scrolling up before the load operation was complete. This bug has been squashed and there is a newer copy up.

thanks, Aaron Conran</description>
		<content:encoded><![CDATA[<p>@Ronni – There was a bug that could be reproduced by scrolling to the bottom very quickly and then immediately scrolling up before the load operation was complete. This bug has been squashed and there is a newer copy up.</p>
<p>thanks, Aaron Conran</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adıyaman Üniversitesi</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-79804</link>
		<dc:creator>Adıyaman Üniversitesi</dc:creator>
		<pubDate>Thu, 05 Nov 2009 15:35:57 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-79804</guid>
		<description>Good work, but the loading of the next page should occur before the user does reach the bottom of the page, like on DZone. Thanks for sharing your work with us.</description>
		<content:encoded><![CDATA[<p>Good work, but the loading of the next page should occur before the user does reach the bottom of the page, like on DZone. Thanks for sharing your work with us.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aksaray üniversitesi</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-73891</link>
		<dc:creator>aksaray üniversitesi</dc:creator>
		<pubDate>Tue, 01 Sep 2009 16:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-73891</guid>
		<description>Gobut the loading of the next page should occur before the user does reach the bottom of the page,</description>
		<content:encoded><![CDATA[<p>Gobut the loading of the next page should occur before the user does reach the bottom of the page,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: becayiş</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-73890</link>
		<dc:creator>becayiş</dc:creator>
		<pubDate>Tue, 01 Sep 2009 16:07:03 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-73890</guid>
		<description>. You should add an config option for this.
Thanks for sharing your work with us.</description>
		<content:encoded><![CDATA[<p>. You should add an config option for this.<br />
Thanks for sharing your work with us.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lidafx15zayiflamar10kurumsalseo</title>
		<link>http://www.extjs.com/blog/2008/07/14/livedatapanel/comment-page-1/#comment-73889</link>
		<dc:creator>lidafx15zayiflamar10kurumsalseo</dc:creator>
		<pubDate>Tue, 01 Sep 2009 16:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/livedatapanel-a-dzone-style-widget-supporting-lazy-loading/#comment-73889</guid>
		<description>like on DZone. You should add an config option for this.
Thanks for sharing your work with us.</description>
		<content:encoded><![CDATA[<p>like on DZone. You should add an config option for this.<br />
Thanks for sharing your work with us.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
