We have been using NetAdvantage 2006 (prob time to upgrade) but beofre we do i want to understand if some of our problems ahve been solved.
We are typically dealling with a large amount of data, and we have found that the grids do not alway do so well in these cases. typically we are dealing with 100,000 to 200,000 rows of data that the user is trying to organize
1. If we use pagination and want to use the infragistics control for sorting, if the user sorts on a column it only sorts that page rather than the whole data set. This is basically useless. Is there an easy way to accomplish this without writing additional routines. Or must we write something customer
2. If we want to use the search functionality, we ahve found with this many rows, it doesn't really work in infragistics. It takes way to much time to return the result
3. If we want to provide checkboxes, and want to allow the suer to select items on multiple pages, when the user goes from apge to page, it does not maintain the checked box on the previous page. So if the user wants to search, select, search select. You can not do this on a multiple page document
4. We have been using prev/next for pagination, but have had a tough time replacing these with XML tags so that we can cahnge the language as needed.
Any suggestions are welcome
Thanks we will take a look at this, but we have still not found a solution to the multiple paging problem. And it is a real problem. Can someone take a look at this and suggest an elegent way to solve it? If/When you look at it, please assume around 25,000 rows of data to search and select from
For paging localization you can use the PagerStyle NextText / PrevText properties to localize the Prev/Next text message, e.g.
<igtbl:UltraWebGrid ID="UltraWebGrid1" runat="server" Height="200px" Width="325px"> <displaylayout bordercollapsedefault="Separate" name="UltraWebGrid1" AutoGenerateColumns="true" rowheightdefault="20px" version="4.00"> <pager NextText="Localized Text Here" PrevText="Localized Test Here"> <PagerStyle BackColor="LightGray" BorderStyle="Solid" BorderWidth="1px"> <borderdetails colorleft="White" colortop="White" /> </PagerStyle> </pager>
As far as paging/sorting is concerned, please take a look at our online samples located here - you may need to implement custom sorting based on your requirements:
http://samples.infragistics.com/2008.1/webfeaturebrowser/
Hi .. I am facing the same problem ... Have u reached any solution?