Questions tagged [data-paging]

72 questions
0
votes
1 answer

How to prevent shifting of paged data in a REST API result set

I am trying to implement a REST API endpoint that will return a set of entities, optionally filtered using various query parameters. Since the result set may be large, the endpoint will also support paging, using limit and offset query…
Tim Coulter
  • 8,705
  • 11
  • 64
  • 95
0
votes
1 answer

How to create Paging in Yii2?

I want to create a line of code to create paging in my Web Service with Yii2 and I want the results like in Api The Movie there is param page=1. After I made the observation on Google, I found a way to make paging by adding limit and offsets in my…
user8442578
0
votes
1 answer

Null bitmap is set when there is no null columns

I am learning PAGE structure and currently I'm stuck at the NULL bitmaps. create table dbo.ro ( ID int not null, Col1 varchar(8000) null, Col2 varchar(8000) null ); insert into dbo.ro(ID, Col1, Col2)…
Dmitrij Kultasev
  • 5,447
  • 5
  • 44
  • 88
0
votes
1 answer

Missing bytes in SQL Server data page

Did not know how to call the Title properly. However, I am trying to understand how the data pages are stored. I've created simple table: CREATE TABLE testFix ( id INT, v CHAR(10) ); INSERT INTO dbo.testFix ( id, v ) VALUES ( 1, -- id -…
Dmitrij Kultasev
  • 5,447
  • 5
  • 44
  • 88
0
votes
2 answers

Paging data and get row count with out considering the page number in stored procedure

I am using SQL Server 2012. I need to do paging in my stored procedure. In client side (Web page), I need to have the result of the stored procedure for requested page and also I need to have the row count without considering the page number for…
Ardalan Shahgholi
  • 11,967
  • 21
  • 108
  • 144
0
votes
1 answer

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 per page). i've thought of using a formview but the…
iceheaven31
  • 877
  • 1
  • 13
  • 23
0
votes
1 answer

Ice faces datapaginator doesn´t work

I have a problem with an ice:dataPaginator. It shows correctly the number of rows in my datatable also shows correctly the current page, but when I press the next page icon nothings happens, in others words if I have 23 rows it shows correctly the…
RicardoP
  • 1
  • 4
0
votes
1 answer

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.
pdiddy
  • 6,217
  • 10
  • 50
  • 111
0
votes
2 answers

Is there a way to get just the first page of data from a long-running SQL Server stored procedure?

My ultimate need is to present some reports (the results of SQL Server stored procedures) on Web API pages. The challenge is that the stored procedures that return this data are very slow - sometimes taking several minutes to run. No user in their…
0
votes
1 answer

How to make server-side paging in datatable?

I am using MVC. I have large amount of data and I need to have data only with paging limit. For example, if page size is 10 I want to get only top 10 records in my database. Here is my html :
Harun Acar
  • 33
  • 6
0
votes
0 answers

Paging not working inside gridview indside update panel

I have placed two grid views inside update panel. Both of them allow paging to show the data. My code of .aspx page is:
Mohemmad K
  • 809
  • 7
  • 33
  • 74
0
votes
1 answer

Paging on grid panel (extjs)

I am following the code in the link below to page data on a Ext.grid.Panel without success. Data is rendered altogether in the panel without paging. Apparently, the paging toolbar has no data to display but it is correctly configured to the store…
jvarleiza
  • 1
  • 2
0
votes
2 answers

How to implement pagination in Angular when collection size is changing

I am trying to use angular-UI pagination for a table, where I am splicing the array where the page intersects the array. However I am not clear how to handle the fact that the array of objects is being added to and deleted to from within the table…
smackenzie
  • 2,880
  • 7
  • 46
  • 99
0
votes
1 answer

Parse Paging Results From GeoPoint Query

We are attempting to page through results from a PFQuery that includes a GeoPoint. We are seeing duplication and inconsistencies in the returned records. For example: PFGeoPoint *geoPoint = [PFGeoPoint geoPointWithLatitude:41.90585396476684…
0
votes
1 answer

Paging in a select tag without the next and prev page types

I'm trying to create a select tag paging with the following code: But the result is this: Further debugging by using the…
Wezelkrozum
  • 831
  • 5
  • 15