<?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: DataGrid + RecordSet = Awesome App	</title>
	<atom:link href="https://jessewarden.com/2005/04/datagrid-recordset-awesome-app.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2005/04/datagrid-recordset-awesome-app.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Thu, 05 Jun 2008 11:50:09 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: vinitha		</title>
		<link>https://jessewarden.com/2005/04/datagrid-recordset-awesome-app.html/comment-page-1#comment-90961</link>

		<dc:creator><![CDATA[vinitha]]></dc:creator>
		<pubDate>Thu, 05 Jun 2008 11:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=772#comment-90961</guid>

					<description><![CDATA[Hi,
My requirement is &quot;Initially bind first 10 records to the datagrid. On scrolling the scrollbar need to bind another set of records. Scrolling should be on both upwards and downwards. Another requirement is I need to implement Server-Side Sorting on datagrid&quot;.

Please do help me in this.

Thanks in advance...]]></description>
			<content:encoded><![CDATA[<p>Hi,<br />
My requirement is &#8220;Initially bind first 10 records to the datagrid. On scrolling the scrollbar need to bind another set of records. Scrolling should be on both upwards and downwards. Another requirement is I need to implement Server-Side Sorting on datagrid&#8221;.</p>
<p>Please do help me in this.</p>
<p>Thanks in advance&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: judah		</title>
		<link>https://jessewarden.com/2005/04/datagrid-recordset-awesome-app.html/comment-page-1#comment-90465</link>

		<dc:creator><![CDATA[judah]]></dc:creator>
		<pubDate>Tue, 03 Jun 2008 18:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=772#comment-90465</guid>

					<description><![CDATA[A little late to this convo but ...

I&#039;ll list my reasons: 

1. It&#039;s easier to program. Paging is a pain in the ass. At least currently. If I want to &quot;see all the records in category xyz&quot; then show me them. It is easier to take the recordset and bind it to the datagrid. 

2. Scrolling is easier than paging. In HTML you just output the data to a table and use the scroll bar. Since it&#039;s usually sorted alphabetically or numerically you can find what you are looking for much faster. Or use ctrl + f to find the record on the page.

3. Paging is a hack (sortof). Paging is a way to handle a limitation of the hardware or network. Computers will get faster and 1 million will be normal and we will be told to page 1 billion records. Paging is a way to handle large amounts of data over the network. It is a way to handle the model more than a design choice of the view.]]></description>
			<content:encoded><![CDATA[<p>A little late to this convo but &#8230;</p>
<p>I&#8217;ll list my reasons: </p>
<p>1. It&#8217;s easier to program. Paging is a pain in the ass. At least currently. If I want to &#8220;see all the records in category xyz&#8221; then show me them. It is easier to take the recordset and bind it to the datagrid. </p>
<p>2. Scrolling is easier than paging. In HTML you just output the data to a table and use the scroll bar. Since it&#8217;s usually sorted alphabetically or numerically you can find what you are looking for much faster. Or use ctrl + f to find the record on the page.</p>
<p>3. Paging is a hack (sortof). Paging is a way to handle a limitation of the hardware or network. Computers will get faster and 1 million will be normal and we will be told to page 1 billion records. Paging is a way to handle large amounts of data over the network. It is a way to handle the model more than a design choice of the view.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Deane Venske		</title>
		<link>https://jessewarden.com/2005/04/datagrid-recordset-awesome-app.html/comment-page-1#comment-2470</link>

		<dc:creator><![CDATA[Deane Venske]]></dc:creator>
		<pubDate>Sun, 18 Dec 2005 14:36:26 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=772#comment-2470</guid>

					<description><![CDATA[Gotta agree with an earlier post about using flash to do large data display being irresponsible. It&#039;s all about the right tool for the right job.

Millions of records? Don&#039;t use a web app. Use a desktop application that can handle it, sure read the data from the intranet DB, but don&#039;t use flash for this. Crazy.

Look into REALBasic and Einhugur&#039;s datagrid. It can handle enormous amounts of data. The trick it uses is it only displays and stores what has been requested (IE you scroll and it fires an event saying &#039;I need Row X&#039;s data when Row X comes into view) so at most you&#039;re looking at 20 requests at a time. Pretty nifty if you ask me.


]]></description>
			<content:encoded><![CDATA[<p>Gotta agree with an earlier post about using flash to do large data display being irresponsible. It&#8217;s all about the right tool for the right job.</p>
<p>Millions of records? Don&#8217;t use a web app. Use a desktop application that can handle it, sure read the data from the intranet DB, but don&#8217;t use flash for this. Crazy.</p>
<p>Look into REALBasic and Einhugur&#8217;s datagrid. It can handle enormous amounts of data. The trick it uses is it only displays and stores what has been requested (IE you scroll and it fires an event saying &#8216;I need Row X&#8217;s data when Row X comes into view) so at most you&#8217;re looking at 20 requests at a time. Pretty nifty if you ask me.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Phoenix		</title>
		<link>https://jessewarden.com/2005/04/datagrid-recordset-awesome-app.html/comment-page-1#comment-2469</link>

		<dc:creator><![CDATA[Phoenix]]></dc:creator>
		<pubDate>Wed, 28 Sep 2005 18:44:42 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=772#comment-2469</guid>

					<description><![CDATA[Hi,
When I first loaded my flex datagrid with 190 records I was really disappointed. It was almost impossible to scroll tha grid or resize it. It seems like flex components are much slower than flash components. What is the reason??]]></description>
			<content:encoded><![CDATA[<p>Hi,<br />
When I first loaded my flex datagrid with 190 records I was really disappointed. It was almost impossible to scroll tha grid or resize it. It seems like flex components are much slower than flash components. What is the reason??</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: George		</title>
		<link>https://jessewarden.com/2005/04/datagrid-recordset-awesome-app.html/comment-page-1#comment-2468</link>

		<dc:creator><![CDATA[George]]></dc:creator>
		<pubDate>Wed, 20 Apr 2005 06:28:04 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=772#comment-2468</guid>

					<description><![CDATA[Well, actually there is a good reason to load a datagrid with  thousands of records. Some sales type applications want to show quantity and give the customer the ability to narrow or expand results on the fly. Granted, this should not be common practice, but considering the context, the customer is always right.

So, is there a way to load thousands of records, 9 columns, all sort enabled and Flash to fizzling to a halt? :-)]]></description>
			<content:encoded><![CDATA[<p>Well, actually there is a good reason to load a datagrid with  thousands of records. Some sales type applications want to show quantity and give the customer the ability to narrow or expand results on the fly. Granted, this should not be common practice, but considering the context, the customer is always right.</p>
<p>So, is there a way to load thousands of records, 9 columns, all sort enabled and Flash to fizzling to a halt? :-)</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
