Questions tagged [data-paging]

72 questions
1
vote
5 answers

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.
David Robbins
  • 9,996
  • 7
  • 51
  • 82
1
vote
1 answer

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 timelines? Or is there a performance reason? Do you…
CodeKat.NET
  • 63
  • 1
  • 5
1
vote
1 answer

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 data services in the first place. However, all the…
JohnL
  • 3,922
  • 3
  • 22
  • 22
1
vote
0 answers

How to get All rows in Grid View (Which has AllowPaging = true)into DataTable?(asp.net c#)

I Want to retrieve data from my grid view into my data table. the problem is my grid view has data pager and when i want to grab data to my data table=>IT JUST GRABS THE PAGE ONE so these are my codes :
amin
  • 1,194
  • 1
  • 12
  • 20
1
vote
2 answers

How to loop through the whole gridview rows including the rows in other pages?

I know how to loop through the grid view rows : foreach (GridViewRow oItem in GridView1.Rows) { // } but what i want to do is looping through the whole gridview including the rows in the other pages if i enable the paging . how to do this ?
Anyname Donotcare
  • 11,113
  • 66
  • 219
  • 392
1
vote
1 answer

Page-navigation using stored procedure (can not bind a composite identifier)

I am using a stored procedure to make page-navigation when I view a list of stores. I have only one table Store with columns Name & S_Id. And here is my query : SELECT Stores.Name FROM ( SELECT ROW_NUMBER() OVER (ORDER BY…
Anton Putov
  • 1,951
  • 8
  • 34
  • 62
0
votes
2 answers

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 Limit My application goes to crash.What should I do to…
0
votes
2 answers

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 code is as follows: In my controller: Public…
Ashok Padmanabhan
  • 2,110
  • 1
  • 19
  • 36
0
votes
1 answer

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 source stored in hash table, I can not do paging in…
Sherry
  • 75
  • 2
  • 5
0
votes
1 answer

ABP.IO: Get all items of ReadOnlyAppService without PagedAndSortedResultRequestDto

I would like to use the power of ReadOnlyAppService to expose a simple object (NetworkDevice) to my Angular front-end. So I wrote a simple app service: public class NetworkDeviceAppService: ReadOnlyAppService,…
Damien R
  • 65
  • 9
0
votes
2 answers

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 Criteria Else Select every product Now, I want…
Chris
  • 2,293
  • 11
  • 48
  • 86
0
votes
1 answer

dataView page not set to 1 after get request

I'm having a p-dataView (PrimNG) with paging that working fine except for some paging issue. If I page to a page other than 1 and then make a call to the rest api and recieve the data, the dataView is still on the same page instead of setting it to…
Guy E
  • 1,775
  • 2
  • 27
  • 55
0
votes
1 answer

How to Set Last Row Data Paging

I have trouble to set last row for paging. I set Page size: 10 in gridview This my behind code: protected void Page_Load(object sender, EventArgs e) { BindData(); } public void BindData() { string strConnection =…
Roberts
  • 53
  • 1
  • 7
0
votes
0 answers

Anchor link with subpages

Bonjour From France ! I am working on a webapp and I'm stuck with how to go to a specific div in a page from another : I have one page (myapp/#!/shop.php) with a list of products and a link on every product to a detail page…
jpsFR
  • 89
  • 8
0
votes
0 answers

GridView bug in asp.net 4.6.1?

All, So I have upgraded my asp.net web application from asp.net 3.5 to asp.net 4.6.1. After the upgrade I discovered an issue with the GridView control, specifically paging issue. The GridView generates the following paging UI: << 1 2 3 ...…
ActiveX
  • 1,064
  • 1
  • 17
  • 37