<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://xceed.com/CS/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tag 'Smooth scrolling'</title><link>http://xceed.com/CS/search/SearchResults.aspx?o=DateDescending&amp;tag=Smooth+scrolling&amp;orTags=0</link><description>Search results matching tag 'Smooth scrolling'</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Debug Build: 61120.2)</generator><item><title>Datagrid’s very capable little brother.</title><link>http://xceed.com/CS/blogs/componentinsider/archive/2010/12/06/datagrid-s-very-capable-little-brother.aspx</link><pubDate>Mon, 06 Dec 2010 16:54:00 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:29373</guid><dc:creator>Odi [Xceed]</dc:creator><description>&lt;P&gt;Datagrids are very flexible controls. They often contain a lot of information and provide tools to visually organize this information and sift through it.&lt;/P&gt;&lt;P&gt;Before WPF/Silverlight, you could not create a data template for items in a listbox or other data controls. It was not feasible to attempt to present tabular data (e.g., name, age, description, photo) beautifully in a listbox item. Datagrids and listviews were therefore a handy solution.&lt;/P&gt;&lt;P&gt;Now that you can template the elements of a listbox to incorporate the key information you want to display, the lowly listbox has gained superhero data visualization powers.&lt;/P&gt;&lt;P&gt;That’s where Xceed comes in. As datagrid experts, we were naturally concerned with the trends we have been observing in the industry. Trends towards simpler interfaces, the multiplication of smaller screens, and touch interfaces. We saw not only that datagrids would have to adapt but that the listbox has gained in importance in a world where developers are simplifying the experience and hiding extra data until the end-user specifically requests to see it.&lt;/P&gt;&lt;P&gt;The listbox is a wonderful control not only for desktop experiences, but for Windows Phone 7 and mobile devices. We just have a tough time visualizing end users using a datagrid on a 4” screen. Columns and rows, and editing data within the cells of those columns and rows, don’t seem to play well there.&lt;/P&gt;&lt;P&gt;Some say that listboxes are the new datagrids. Here's&amp;nbsp;one&amp;nbsp;&lt;A title="Scott Barnes DataGrid versus ListBox: FIGHT!" href="http://www.riagenic.com/archives/193"&gt;blog post&lt;/A&gt; that had given us some food for thought.&lt;/P&gt;&lt;P&gt;So we set out to improve the listbox. Today, we launched &lt;A title="Xceed Ultimate ListBox for Silverlight" href="http://xceed.com/ListBox_Silverlight_Intro.html"&gt;Xceed Ultimate ListBox for Silverlight&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;IMG style="width:428px;height:172px;" title="Listbox screenshot 1" alt="Listbox screenshot 1" align="baseline" src="http://xceed.com/CS/photos/odi/images/29378/original.aspx" width="428" height="172"&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG style="width:428px;height:172px;" title="Listbox screenshot 2" alt="Listbox screenshot 2" align="baseline" src="http://xceed.com/CS/photos/odi/images/29376/original.aspx" width="428" height="172"&gt;&lt;/P&gt;&lt;P&gt;It is the first control Xceed has made that mimics an existing API (the one for the standard Silverlight listbox) instead of providing an entirely new one. We wanted as little of a learning curve as possible. It is also the first control Xceed has ever launched at such a low price point ($89 per developer). We want the barrier to entry to be as low as possible as well.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Why a better listbox?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In the world of Silverlight clients, whether desktop ones or for mobile devices, a lot of the data loaded into listboxes comes over the air or wire. Listboxes aren’t just used to display 5-10 items from an array of objects in memory, they are also used to display hundreds or sometimes thousands of items from remote data sources.&lt;/P&gt;&lt;P&gt;But as the Silverlight listbox works today, it either has to load all of those remote items first, causing the end user to wait while that happens, or it will load only some of the data first, and load it on an as-needed basis. The latter technique is called data virtualization, or paging.&lt;/P&gt;&lt;P&gt;In practically all the implementations we’ve seen, listboxes implementing data virtualization always have usability problems. Some of them make the end user click a “load more” button and wait every time they want more data. Others load the data automatically when you reach the bottom, but still do so only just-in-time and make the end user wait. Most of them have scrollbar thumbs that jump around.&lt;/P&gt;&lt;P&gt;What if the listbox was built with the idea that end users should be able to have an effortless and snappy experience when data virtualization is being used, similar to when the entire data source has already been loaded into the listbox? That’s what Xceed has worked on. I want to call it “super data virtualization”, but on the web site it is simply called “advanced background record retrieval”. Here are the innovations we have put into our super data virtualization:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Automatic record retrieval.&lt;/STRONG&gt; No “load more” buttons.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Background record retrieval.&lt;/STRONG&gt; Listbox never freezes, always responds to end-user’s navigation commands.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Passive pre-fetching.&lt;/STRONG&gt; More than what appears in the listbox gets retrieved, but not more than is needed.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Active pre-fetching.&lt;/STRONG&gt; When the listbox UI is not scrolling, the listbox actively retrieves more records to fill its cache.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Fluid UI.&lt;/STRONG&gt; Without smooth scrolling, the perceived response time to load more data is that of the complete round-trip of request/response to the server. With smooth scrolling animating for about 0.8s and items that fade in when they arrive, the perceived response time begins only after the animation has completed if items still have not arrived.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Discovery-less start up.&lt;/STRONG&gt; To avoid scrollbar thumbs jumping around, or to support grouping, a data-virtualized listbox typically would need to know the total row count, number and size of groups, or other information about the data source. Not this listbox, allowing it to start up faster than any other can.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Optimized navigation.&lt;/STRONG&gt; The listbox requests data from the data source using relative queries instead of absolute index-based queries. Such queries execute faster on the server so navigating through the listbox is snappier. We know of no other listbox that works this way.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Query grouping and throttling.&lt;/STRONG&gt; During scrolling, queries to the server for more data rows are grouped together when possible. This works because queries are asynchronous and are typically obtaining data not currently in view. During heavy scrolling, queries that are no longer needed are canceled, thereby reducing the load on the server as well as the listbox’s own CPU use.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The goal is to provide lightning fast display of remote data in a listbox. See &lt;A title="'Impress Me' demo with Netflix ODATA catalog" href="http://demo.xceed.com/ListBox_Silverlight/Demo/#/ImpressMe/ImpressMe/ImpressMe"&gt;what we’ve accomplished&lt;/A&gt; with Netflix’s online catalog of 130,000+ movies thanks to the listbox connected via ODATA / WCF Data Services.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What else does Xceed Ultimate ListBox for Silverlight bring to the table?&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Built-in search box, of course it works with the data virtualization.&lt;/LI&gt;&lt;LI&gt;Completely fluid UI throughout. Slick and fast smooth scrolling, insert/delete items, etc.&lt;BR&gt;6 beautiful themes.&lt;/LI&gt;&lt;LI&gt;Deep built-in support for WCF Data Services / ODATA and WCF Ria Services.&lt;/LI&gt;&lt;LI&gt;Complete grouping support. Displays group headers between items in different groups.&lt;/LI&gt;&lt;LI&gt;Group headers are “sticky” just like with the iOS listbox. They are always visible.&lt;/LI&gt;&lt;LI&gt;Group navigation (prev/next) and WP7-like pop-up index to jump to specific groups.&lt;/LI&gt;&lt;LI&gt;Very little learning curve, simply replace your current listbox and turn on new features.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;There’s more, see the &lt;A title="Features of Xceed Ultimate ListBox for Silverlight" href="http://xceed.xcd/Listbox_Silverlight_Features.html"&gt;complete feature list&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;We hope you love this new control as much as we do and help us spread the word about it! Tweet it, Facebook it, blog it, show it to colleagues... it's all good!&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR&gt;Odi&lt;BR&gt;&lt;/P&gt;</description></item><item><title>Silverlight Datagrid: Magical results</title><link>http://xceed.com/CS/blogs/componentinsider/archive/2010/07/29/silverlight-datagrid-magical-results.aspx</link><pubDate>Thu, 29 Jul 2010 18:06:00 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:27810</guid><dc:creator>Odi [Xceed]</dc:creator><description>&lt;P&gt;Xceed has been working for over 1.5 years and has put over 18000 person-hours of work on one single new Silverlight control, so that with only a couple of lines of code, you can achieve some magic.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;A bit of history.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;At Xceed, we've been&amp;nbsp;creating components and class libraries for Windows developers for 16 years. Our first datagrid control was started 10 years ago. We offered a variety of other UI controls as well, such as charts, treeviews, menus, navigation and docking window controls. Like other component vendors, we created a “collection” or “suite” of many controls. Five years ago, our entire UI controls team began to focus solely on developing datagrid controls.&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH:164px;HEIGHT:141px;" title="Jack of all trades" alt="Jack of all trades" align=left src="http://xceed.com/CS/photos/odi/images/27808/original.aspx" width=164 height=141&gt;&lt;/P&gt;
&lt;P&gt;By putting all our energy exclusively behind datagrids, we felt we could do a better job than by spreading ourselves thin working on many controls. We could elevate datagrids to the next level, and cater to developers who would rather have a great datagrid than a collection of mediocre controls. We would target developers who value quality over quantity.&lt;/P&gt;
&lt;P&gt;This move was made when we began developing Xceed DataGrid for WPF. It allowed Xceed to be the first to market with a datagrid for WPF (released January 2007, months to years before the other component vendors had theirs ready). We were not only first, but we had an amazing product that got impressive &lt;A title="Xceed DataGrid for WPF Testimonials" href="http://xceed.com/Grid_WPF_Testimonials.html"&gt;testimonials&lt;/A&gt;. Microsoft even used it in parts of Visual Studio 2010.&lt;/P&gt;
&lt;P&gt;Our competitors kept their existing strategy of creating a wide variety of UI controls. Their datagrids received relatively little love. In contrast, with only one product type to think about, we were able to churn out an impressive 39 updates in 3.5 years. Customers were rarely kept waiting for resolutions to issues or new features. Today our WPF datagrid leads in stability and features, and offers perhaps the best user experience of any datagrid on any platform.&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH:111px;HEIGHT:140px;" title="Rabbit out of a hat" alt="Rabbit out of a hat" align=middle src="http://xceed.com/CS/photos/odi/images/27807/secondarythumb.aspx" width=111 height=140&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;So what's new in the datagrid department that’s magical?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If you take a look at the competition's Silverlight datagrids and marketing for them, you'll see a recurring message: everyone claims that their datagrid is fast. "&lt;EM&gt;Blazing fast&lt;/EM&gt;" says one. "&lt;EM&gt;The fastest&lt;/EM&gt;" says another. Some of them are indeed fast, but in order to be fast, they have to load up the entire data source first.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH:224px;HEIGHT:186px;" title=Spartan alt=Spartan align=right src="http://xceed.com/CS/photos/odi/images/27806/original.aspx" width=224 height=186&gt;&lt;/P&gt;
&lt;P&gt;That might be OK for Windows Forms applications accessing a local SQL server, however, this is &lt;STRIKE&gt;Sparta&lt;/STRIKE&gt; Silverlight. Many apps built with Silverlight will be accessing data sources that are somewhere else on the internet, not located on the user’s own computer or on a company’s speedy intranet. Having to wait for hundreds (or thousands) of data rows to be transferred over the internet before your datagrid is functional yields a poor user experience. It also drains server and network resources, and client memory.&lt;/P&gt;
&lt;P&gt;Web developers have been facing this challenge for years.&lt;/P&gt;
&lt;P&gt;To avoid having to load all the data, Web developers use a pattern called "paging". If you've ever performed a Google search, you are familiar with paging. A Google search often yields thousands or millions of results, but Google only displays the first 10, and then presents you with a paging interface, providing you with “next page” and “previous page” navigation.&lt;/P&gt;
&lt;P&gt;Most Silverlight datagrids have adopted paging as their solution to working with remote data sources. You put them into a special “virtual” or “server” mode. That’s where things fall apart.&lt;/P&gt;
&lt;P&gt;The fast scrollbar experience disappears, replaced with paging navigation. Clicking on “next page” does nothing until a round trip to the database is completed and the next page of results is delivered. Unlike with Google searches, this can take seconds, and meanwhile the datagrid’s user interface is frozen. These delays are frustrating and reflect upon your entire application.&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH:160px;HEIGHT:107px;" title=Turtle alt=Turtle align=left src="http://xceed.com/CS/photos/odi/images/27809/secondarythumb.aspx" width=160 height=107&gt;There’s nothing blazing fast about it.&lt;/P&gt;
&lt;P&gt;That might explain why no other Silverlight datagrid currently provides a demo of the datagrid accessing a remote data source.&amp;nbsp; The paging or data virtualization demos all use local or randomly generated data, not data on a server somewhere&amp;nbsp;on the internet.&lt;/P&gt;
&lt;P&gt;Now wouldn’t it be great if a datagrid could feel and behave as if all the data was already loaded, even if the data was on a remote server? Using a scrollbar instead of a paging interface? Wouldn’t it be great if we didn’t have to wait every time we navigated forwards or backwards for the remote database to respond?&lt;/P&gt;
&lt;P&gt;That’s what Xceed set out to do, and we believe we have achieved this goal. We designed and built an entirely new datagrid built from the ground up with asynchronous data virtualization in mind. We implemented a number of important advances in data virtualization and datagrid user interface behavior&amp;nbsp;that all work together to make browsing and editing remote data feel almost as fast as as working with local data. None of these advances have ever been done in a datagrid up until now.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;These advances are, on a high-level:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;A Fluid UI that helps mask network lag&lt;/LI&gt;
&lt;LI&gt;An intelligent background record retrieval system&lt;/LI&gt;
&lt;LI&gt;Optimized network communications&lt;/LI&gt;
&lt;LI&gt;Asynchronous editing and validation&lt;BR&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Let’s start with the Fluid UI. A Fluid UI is an animated one, where the content it presents is given a real-world feel. When items move in a Fluid UI, they don’t jump to their new position, they animate, with physics-like motion, to their new location. Things happen smoothly.&lt;/P&gt;
&lt;P&gt;So how does that help mask network lag? It’s all about perception. Here is the scenario with typical datagrids: the user clicks “line down” or “page down” or “next page”. The datagrid immediately launches a query for more data. When that data comes in, only then does the datagrid update its display by jumping down one line or displaying the next page. &lt;EM&gt;The perceived response time is that of the complete round-trip of request/response to the server.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;For example, if clicking “next page” takes 1.5s to obtain and display data from the data source, then the perceived waiting time is the entire 1.5s, even if a “loading” animation is displayed somewhere on the grid’s surface to acknowledge the command.&lt;/P&gt;
&lt;P&gt;On the other hand, with a Fluid UI, when the user clicks “line down” or “page down”, an animation to the next line or page immediately begins. This animation typically takes about 0.8s to complete. During this time, the end user sees “dummy” data rows animate into view – exactly as expected. The end-user feels that everything is responding and working as expected, even if the dummy data rows have no data in them yet. When the data arrives, it fades in smoothly.&lt;/P&gt;
&lt;P&gt;In this scenario, even if the database query (launched at the same time as the animation starts) takes 1.5s to complete, the true perceived waiting time starts only after the animation has completed, and only if the data hasn't arrived by that time. The effective waiting time in the above example is reduced to 0.8s – half the time.&lt;/P&gt;
&lt;P&gt;The next advance is the use of an intelligent background record retrieval system. We also call it Asynchronous Data Virtualization, but either way, it’s new in datagrids.&lt;/P&gt;
&lt;P&gt;In order to be able to launch database queries for more rows to display without freezing the UI, the data virtualization mechanism has to work in the background. No other Silverlight datagrid does this (actually we believe no other company's datagrid on any platform does this). Without being asynchronous, when data is being accessed from the data source, all UI interaction is halted. That means users can’t click at their pace to move forward a few pages, nor change their mind and scroll in the opposite direction (until a round-trip to the server completes). It feels sluggish.&lt;/P&gt;
&lt;P&gt;One Silverlight datagrid has implemented “background loading”, but that only works when you are loading the entire data source into the datagrid, not when getting the data in portions as needed. It also means that while the entire data source is being transferred to the datagrid, the scrollbar thumb is constantly getting smaller, moving up, and the datagrid is slow. Another datagrid has implemented "Stealth Paging" but it offers no advantages whatsoever over regular paging UI except to provide a scrollbar.&lt;/P&gt;
&lt;P&gt;Why is Xceed’s background retrieval “intelligent”? Because we have added “passive and active pre-fetching” to the mix.&lt;/P&gt;
&lt;P&gt;What is passive pre-fetching? When a typical data virtualizing or paging datagrid first loads up, it queries for the first page of data to display. But why stop there? We know that there are two possible navigation commands an end-user can do. The first is to scroll down or go to the next page. The second is to go to a specific page. In a typical datagrid, if the user scrolls down (or up), it is guaranteed that the end-user will be kept waiting, because the next (or previous) page of data has to be requested from the server.&lt;/P&gt;
&lt;P&gt;Why not, when requesting data from the server, ask for a bit more data than we need to display on that first page? Why not ask for an additional few pages, if the overhead of doing so is acceptable? The result is that, when the user starts scrolling down, there is no waiting. When the buffer runs out, a new request is made for more data, again asking for more than the next page.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Active pre-fetching: the icing on the cake.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;When the datagrid is idle, meaning the end-user is not performing any actions, the datagrid runs a background task that makes sure that the buffer of pages before and after the one currently being displayed is kept full. If the buffer is nearly empty, why should the datagrid just sit there doing nothing? Doing nothing means that it will be a near certainty that the buffer will run out sooner and the end-user will experience lag.&lt;/P&gt;
&lt;P&gt;Active pre-fetching makes the datagrid work harder to preserve the illusion that all the data is actually already loaded. It helps silently query for more data so that the datagrid is more often able to display the previous or next page with absolutely no lag at all.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Optimized network communications.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;We’ve also advanced the state of the art in how queries are made to the data source. This comprises 3 innovations:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;1. No discovery required:&lt;/STRONG&gt; Unlike other data virtualized datagrids, this datagrid does not require knowing the total row count, number and size of groups, or any other information about the data source. This eliminates a sizeable extra query that all other datagrids that support data virtualization require, making the Xceed datagrid load faster than any other.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;2. Optimized navigation:&lt;/STRONG&gt; The datagrid requests data from the data source using relative queries instead of absolute index-based queries. Such queries execute faster on the server so navigating through the datagrid is snappier. We know of no other datagrid that works this way.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;3. Query grouping and throttling:&lt;/STRONG&gt; During scrolling, queries to the server for more data rows are grouped together when possible. This works because queries are asynchronous and are typically obtaining data not currently in view. During heavy scrolling, queries that are no longer needed are cancelled, thereby reducing the load on the server as well as the datagrid’s own CPU use.&lt;/P&gt;
&lt;P&gt;So to conclude, I’ve talked about 7 techniques (Fluid UI, background data virtualization, passive and active pre-fetching, and three query optimizations) that we’ve applied to the datagrid’s data virtualization that all aim to make our Silverlight datagrid the only one to provide seemingly lightning fast access to remote data. Or put another way, it lets end-users access remote data as fast as local.&lt;/P&gt;
&lt;P&gt;For a description of what is actually happening under the hood, see &lt;A title="Data Virtualization: Load Smarter, Not Harder" href="http://xceed.com/CS/blogs/dontpanic/archive/2010/07/28/data-virtualization-load-smarter-not-harder.aspx"&gt;Jenny's blog post&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Odi&lt;BR&gt;&lt;/P&gt;</description></item><item><title>Raising the bar with smooth scrolling</title><link>http://xceed.com/CS/blogs/componentinsider/archive/2008/11/17/continuing-to-raise-the-bar-for-datagrids.aspx</link><pubDate>Mon, 17 Nov 2008 20:35:00 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:16947</guid><dc:creator>Odi [Xceed]</dc:creator><description>&lt;P&gt;In the past two years,&amp;nbsp;Xceed has&amp;nbsp;worked on the performance of Xceed DataGrid for WPF, and&amp;nbsp;with August's release of&amp;nbsp;v3.0, we feel we've achieved a great level of performance. The best in the industry if you not only count scrolling speed, but loading, sorting and grouping time as well.&lt;/P&gt;
&lt;P&gt;Despite the new performance increases, there are still scenarios with slower systems on which the scrolling performance is not fast enough. The industry's solution to that (including Microsoft's own WPF datagrid) is to provide a "deferred scrolling mode". In deferred mode, a datagrid's display isn't updated while you are dragging the scrollbar, it updates only when you stop dragging.&amp;nbsp;This scheme doesn't let you know where you will land&amp;nbsp;when&amp;nbsp;you let go of the thumb, so "scroll tips" were invented to display information about the first row of the page you would land on. Not a very good experience.&lt;/P&gt;
&lt;P&gt;Earlier this year, we started working on Xceed DataGrid for WPF's "perceived performance". We added smooth scrolling to the datagrid, physics-like animation effects, and background generation and display of&amp;nbsp;data items. The combination of these features provides a much better experience than with deferred scrolling, and boy does it look and feel delicious. When a user performs a "page down" action, the datagrid immediately responds by starting to smooth scroll to the next page, while fading-in the datarows as their containers and contents&amp;nbsp;are generated. By the time the animation has slowed down, everything is properly displayed as expected. Instead of a delay on a slower computer when the user hits "page down", they get immediate feedback, giving the datagrid&amp;nbsp;a snappy and fast feel to it.&amp;nbsp;Here's a &lt;A class="" title="Smooth Scrolling Xceed DataGrid for WPF" href="http://mschnlnine.vo.llnwd.net/d1/ch9/5/7/0/2/4/4/TCSSmoothDatagridsXceed_2MB_ch9.wmv"&gt;Channel 9 video (WMV High)&lt;/A&gt; on the new feature, and a couple more new related features such as group headers that always stay in view and touch gesture support.&lt;/P&gt;&lt;IFRAME style="WIDTH:321px;HEIGHT:265px;" src="http://channel9.msdn.com/shows/Continuum/442075/player/" frameBorder=0 width=320 scrolling=no height=325 mce_src="http://channel9.msdn.com/shows/Continuum/442075/player/"&gt;&lt;/IFRAME&gt;&lt;BR&gt;&lt;BR&gt;&lt;A href="http://channel9.msdn.com/shows/Continuum/SmoothDatagridsXceed/"&gt;Smooth Scrolling Datagrids with Xceed on Microsoft Channel9&lt;/A&gt;&lt;BR&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think it is clear that the industry looks toward Xceed as the trend-setter in WPF datagrid controls, and even WPF controls in general. We were the first to release one, the first to provide an XBAP demo (and a still unequaled one even after two years of availability), the first to announce the use in a major application&amp;nbsp;such as Visual Studio Team System 2010, the first to bring 3D to datagrids, and now the first to demonstrate smooth scrolling, physics effects, touch gesture support, and background generation of UI elements to increase perceived performance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description></item></channel></rss>