Questions tagged [data-paging]
72 questions
2
votes
2 answers
Paging is possible in Looker?
I have a huge dataset in Hive. and I am using looker for dashboards. I need to configure and present data in looker for end user purposes. I cant see any documentation given by looker for Paging table or scrollable pages with paging size. For…

Ram Ghadiyaram
- 28,239
- 13
- 95
- 121
2
votes
1 answer
Sql Server page structure. What is Fdata length?
I am trying to understand the structure of the Sql Server data pages. This is the screenshot from the Pro SQL Server Internals by Dmitri Korotkevitch
I've created 3 tables:
1 INT Column
2 INT Columns
4 INT Columns
All columns are NOT NULL
Then I…

Dmitrij Kultasev
- 5,447
- 5
- 44
- 88
2
votes
0 answers
ERROR Maximum request length exceeded
Grid View contains 15000 records and on first time time Page Load the GridView is binding perfectly.
But on any other PostBack event causing the following error.
Maximum request length exceeded.
We have tried increasing the value of…

Akhilesh
- 21
- 3
2
votes
1 answer
Is it possible to do data paging in SQL Server (2012) in constant time?
I've been researching a solution to a performance problem with a system I'm responsible for, and I think at least part of the problem is due to database query performance. We use stored procedures to query "pages" of data in a pretty standard way.…

MarkPflug
- 28,292
- 8
- 46
- 54
2
votes
1 answer
Umbraco Razor paging
I'm having some trouble figuring out a paging mechanism in Umbracos Razor viewengine using AJAX.
Thing is, that the paging needs to be like this:
1 | 2 | 3 | 4 ... 16 Next >>
When the user has clicked on anything greater than 4 it needs to be…

bomortensen
- 3,346
- 10
- 53
- 74
2
votes
1 answer
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 experiencing this problem:
The LoadSize is 30,…

Dennis Ward
- 747
- 3
- 8
- 21
1
vote
0 answers
.Net 6 , Blazor WASM -- paging a list of "records" for CRUD --
My project is VS-2022, .Net 6, C#, Blazor WASM hosted. For CRUD, we designed a razor page showing a list of "records" but needed a way to "page" for a list of 12 records on each page.
This post is NOT a question, but may be used by others seeking…

John D
- 517
- 7
- 22
1
vote
1 answer
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 (
SELECT Top 1 -- = PageSize
*
FROM
(
…

kakopappa
- 5,023
- 5
- 54
- 73
1
vote
2 answers
How to convert SearchHits return type to Page return type in spring data elasticsearch 4.0
I have a spring boot application connecting to an ElasticSearch cluster and I'm performing the following operation on it:
@Autowired
private ElasticsearchOperations operations;
public Page search(Request request){
Query query =…

Kushal Chordiya
- 41
- 5
1
vote
2 answers
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(

samuelvonbonn
- 81
- 2
- 3
1
vote
3 answers
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 even thousands, if we get a big client.…

Vilx-
- 104,512
- 87
- 279
- 422
1
vote
3 answers
Fetching large loads of data using paging
Let's for instance say I have a Cloud environment and a Client environment and I want to sync a large amount of data from the cloud to the client. Let's say I have a db table in the cloud named Files and i want the exact identical table to exist in…

omriman12
- 1,644
- 7
- 25
- 48
1
vote
0 answers
Difference between AsyncListUtil and Data Paging library?
Android introduces a new paging library which is Data Paging. Previously we had the AsyncListUtil class which works with RecyclerView for handling asynchronous data loading.
Data paging also work with RecyclerView as well and doing the same task as…

0xAliHn
- 18,390
- 23
- 91
- 111
1
vote
1 answer
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 IQueryable or at least not from outside Repository (…

TheMar
- 1,934
- 2
- 30
- 51
1
vote
0 answers
Design a dynamic table rows with header row and onclick row event with paging
I want to design a dynamic table or list similar to the picture Dynamic Table with pagingwith paging options,
Please help.

Sathya
- 11
- 3