A memory-management technique where a computer stores and retrieves data from secondary storage for use in main memory. Memory is divided into equal sized pages so to not waste any memory.
Questions tagged [paging]
2459 questions
5
votes
2 answers
Analog ViewPager for paging to horizontal and vertical
Is there an owerwrited class ViewPager for paging on two-dimensional array of Views? Paging to horizontal and vertical.

user1171075
- 51
- 1
- 4
5
votes
3 answers
Gridview custom paging inside wizard control doesn't work correct in asp.net
I have a page where guests can be selected.
This page contains an update panel, within the update panel there is a wizard control and in the wizard control there is a gridview (Panel-> Update Panel -> wizard control -> gridview)
Now the paging…

Backspin
- 51
- 2
5
votes
1 answer
How do the reference and modified bits of the page table entry affect paging?
I am reading up on paging and memory management unit on wikipedia. How does reference and modified bit of the page table entry affects the operation of paging?…

ilovetolearn
- 2,006
- 5
- 33
- 64
5
votes
3 answers
Page Faults and Programming In .Net
I'm reading a book about Operating Systems and it gives some examples in C that I mostly understand. The example I'm looking at now shows two nearly identical pieces of code that will run on a fictitious system...
int i, j;
int [128] [128]…

Rob P.
- 14,921
- 14
- 73
- 109
5
votes
1 answer
Objectify paging
Can you find a good tutorial or documentation about achieving a good pagination in a Google App Engine Objectify world?
I found some posts:
http://groups.google.com/group/objectify-appengine/browse_thread/thread/b640b5d377b620b4
But nothing seems to…

Fabio B.
- 9,138
- 25
- 105
- 177
5
votes
3 answers
Blazor Component paging
I am working on Blazor application and have a component showing list of records (retrieving from entity framework entity), wanted to know what would be best and easiest approach to implement paging on component.
Any help would be appreciated.

ZKS
- 817
- 3
- 16
- 31
5
votes
0 answers
How to Mock DataSource.Factory for Unit Tests
In my Android project I use androidx.paging and mockk unit test library for Kotlin. How can I create a mock object of a DataSource.Factory in unit tests?

sjor
- 1,438
- 5
- 17
- 22
5
votes
1 answer
Update a Single Item in a PagedList using Google's Paging Library
I have a simple list of Pokemon in a RecyclerView with just the Pokemon's name and a "Favorite" ToggleButton. I'm using the Paging Library from Android JetPack with a PageKeyedDataSource to retrieve small chunks of Pokemon and display them to the…

Calvin Rai
- 816
- 1
- 8
- 17
5
votes
1 answer
Gridpanel lost filter while paging
I have a jsonStore bound to gridpanel with paging toolbar and some custom filter. But everytime when I use paging all filtersettings get lost. How can I keep them?

MNR
- 1,073
- 7
- 23
- 37
5
votes
2 answers
Gridview disappears on postback when paging is enabled
I have a gridview that has its DataSourceID property set to a custom ObjectDataSource object. When AllowPaging is set to True, the GridView disappears after a postback. If I set AllowPaging to False it's fine. Can someone shed some light on this for…

adam0101
- 29,096
- 21
- 96
- 174
5
votes
1 answer
Razor Nested WebGrid
How do I have nested WebGrid with lot of formatting for each column. I can do a nested for-loop, but I need it basically for paging. Or is there any other better option?

IsmailS
- 10,797
- 21
- 82
- 134
5
votes
2 answers
create method of DataSource.Factory doesn't get call
Im trying to make a dictionary application with Paging library.
when a user writes any letters, I will call an API and get all the words including that letter.
The problem is that, when I call the API via the Paging library in the init{} method of…

Pouya Heydari
- 2,496
- 26
- 39
5
votes
1 answer
What is the advised way to query documents from different partitions in CosmosDB?
When using Azure Cosmos DB and querying one partition, i just specify the partition key in the FeedOptions.
But when i have to query n partitions, i have (afaik) 2 options:
Run a separate Task for every partition and merge the result in my…

Markus S.
- 2,602
- 13
- 44
5
votes
1 answer
GridView from CodeBehind in C# Paging not working
when I click the > on my GridView it does not go to the next set of records.
DataGrid dataGrid = new DataGrid();
dataGrid.PageSize = 5;
dataGrid.AllowPaging = true;
dataGrid.EnableViewState = true;
…

user390480
- 1,655
- 4
- 28
- 61
5
votes
1 answer
How to use Bitwise to extract Page Number and Offset in Language C
I am studying bitwise operators in language C, now i'm developing a paging simulator with FIFO replacement algorithm to operating systems discipline and encountered difficulties with using bitwise.
SIZE PAGE 1024 // 1024 bits ==…

Paulo Pitta
- 163
- 7