Tagged Questions
The data-paging tag has no wiki summary.
7
votes
4answers
303 views
How does MonogoDB stack up for very large data sets where only some of the data is volatile
I'm working on a project where we periodically collect large quantities of e-mail via IMAP or POP, perform analysis on it (such as clustering into conversations, extracting important sentences etc.), ...
7
votes
6answers
3k views
Data paging in SQL Server CE (Compact Edition)
I am writing a wpf destop application, and would like to use SQL Server CE as a backend. I'm trying to come up with a good way to do efficient data paging. In SQL Server Express, I can do something ...
3
votes
3answers
291 views
Is this how you paginate, or is there a better algorithm?
I want to be able to take a sequence like:
my_sequence = ['foo', 'bar', 'baz', 'spam', 'eggs', 'cheese', 'yogurt']
Use a function like:
my_paginated_sequence = get_rows(my_sequence, 3)
To get:
...
3
votes
2answers
615 views
Help ! How do I get the total number rows from my SQL Server paging procedure?
Ok I have a table in my SQL Server database that stores comments. My desire is to be able to page though the records using [Back],[Next], page numbers & [Last] buttons in my data list. I figured ...
1
vote
0answers
18 views
OnPagePropertiesChanging event not firing?
<div class="listQuestions">
<asp:ListView ID="lstQuestions" runat="server"
OnPagePropertiesChanging="lstQuestions_PagePropertiesChanging">
<LayoutTemplate>
...
1
vote
1answer
106 views
Is it possible to implement server-side paging with a WCF Service, NOT a WCF Data Service
I've been experiementing with using WCF and have written a WCF Service to provide the backend for a web site. I've encountered a problem when it comes to implementing server-side paging as all the ...
1
vote
2answers
125 views
How to do MS Access database paging + search?
I have a MS Access 2003 database with a table called product1 with a Primary key named Product Code. There is no auto id column.
I have used this sql to do the custom data paging.
SELECT *
FROM (
...
1
vote
1answer
527 views
Server-side paging with WCF OData and GetContinuation() method
I am using the QueryOperationResponse GetContinuation() method to attempt and page through a very large data set read off an odata wcf feed. I am using some OData helper libraries acquired from ...
1
vote
1answer
38 views
Page navigation design question - Next Prev versus More
I have been wondering why social sites such as twitter and facebook use the concept of "More" results rather than paging, such as Next and Previous pages. Is this commonly used when paging through ...
1
vote
1answer
306 views
DataServiceConfiguration is internal so I can't enable WCF data paging?
I have a problem with my WCF Data Service, and this one is just plain weird. I'm trying to enable paging so that large collections will be handled better, which was the whole idea behind me using ...
1
vote
1answer
12k views
DomainDataSource DataPager with silverlight 3 DataGrid & .Net RIA Services
I have a simple datagrid example with silverlight 3, and am populating it with the .NET ria services using a DomainDataSource along with a DataPager declaratively (nothing in the code-behind), and am ...
1
vote
5answers
719 views
What is the best method for paging with datagrid performance?
On a site with a high number of users, should paging be handled in code, or with a stored procedure. If you have employed caching, please include your success factors.
0
votes
2answers
37 views
How I can show my thousands of records in ScrollView
I am new to Android.I have stuck on one place,
I am fetching data from server that have thousand of records.I am using Limit 0,50 in my Query.SO it is showing only 50 records,But if I don't use ...
0
votes
2answers
78 views
How to implement paging with Linq to Xml?
I am stuck on how to implment paging when retrieving images from my rss feed. I have a helper also to render the html for the pager links. However i am not sure what to do in the Index action. My ...
0
votes
1answer
34 views
Paging the data in .net MVC, and need to pass data between different Views
.net MVC 2.0 question:
The main problem is I want to paging my data in Arraylist and show them in different pages in the View. (I want to paging data on client side because on my server side, data ...
0
votes
0answers
83 views
ASP.NET pagination for TV guide - how to get it to work [closed]
Possible Duplicate:
ASP.NET pagination - getting it to work properly?
I currently have an ASP.NET script for a TV guide which displays the data from the database properly in a tabl, as ...
0
votes
3answers
780 views
Data paging in datalist With server side coding
I have to implement the data paging to the datalist I have in my existing application.
What I have
Stored procedure - which has if else condition
If(Seacrh Criteria)
Select based on Search ...
0
votes
0answers
310 views
Grids in ASP.NET MVC Partial Views
I am using a Telerik ASP.NET MVC Grid in a partial view. I can load the grid in the partial view no problem. Keeping track of it later is my issue. This Telerik Grid has paging links for page 1, ...
0
votes
1answer
132 views
Best way to do a pagination on front end
I have a table that has a data for 30-60 rows. I would like to paginate this on front end. Basically something like:
First 1 2 3 4(<current) 5 6 .. 15(<last page) Last
jQuery would be the ...
0
votes
3answers
169 views
How to create SEO-friendly paging for a grid?
I've got this grid (a list of products in an internet shop) for which I've no idea how big it can get. But I suppose a couple hundred items is quite realistic, especially for search results. Maybe ...
0
votes
1answer
395 views
ASP.NET MVC 2 Paging Sorting filtering
This may be duplicate question but I could not find one on SO. If so Please point me to the one.
I have seen many examples of Paging and Sorting using IQueryable all fine, but, I dont want to use ...
0
votes
1answer
56 views
control that has paging but supports custom format
i need to know what control in asp .net 2.0 to use to get this layout:
i need to display 8 videos at a time using 2 rows with 4 columns, but the control should also have paging (to display 8 items ...
0
votes
1answer
248 views
SQL ce data paging possible?
Is there a way to implement data paging with sql ce? It would be for windows mobile app.
Currently using the sql compact edition 3.5. Also using the Microsoft Sync Framework ADO.net v1.0 for device.
-1
votes
1answer
272 views
jQuery: How to make `real-time pager` depending on browser screen size without `content` refreshing?
jQuery: How to make real-time pager depending on browser screen size without content refreshing?
Example for it you can see in http://www.nytimes.com/chrome/
HTML and CSS in ...