Questions tagged [paging]

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.

2459 questions
5
votes
1 answer

UIScrollView - Revert to starting position without snaps

I want to revert my UIScrollView's content offset if I don't drag enough: - (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(CGPoint *)targetContentOffset { self.endingOffset =…
Rey Gonzales
  • 836
  • 1
  • 8
  • 17
5
votes
4 answers
5
votes
2 answers

Demand Paging: Calculating effective memory access time

I can't understand the answer to this question: Consider an OS using one level of paging with TLB registers. If the page fault rate is 10% and dirty pages should be reloaded when needed, calculate the effective access time if: TLB Lookup = 20 ns…
Ehsan Toghian
  • 548
  • 1
  • 6
  • 26
5
votes
2 answers

Gridview sorting up/down arrow in column headers

I'm currently working on some code which is taking care of sorting and paging data in a gridview. I'm now trying to implement sorting arrow (up/down arrows next to column headers) but I have no success. The code to implement the sorting arrows is…
Mark Marina
  • 713
  • 4
  • 12
  • 26
5
votes
1 answer

trouble with uiscrollview paging in iOS 6 using storyboard

I have a very strange problem. I'm using this tutorial: http://www.iosdevnotes.com/2011/03/uiscrollview-paging/ in order to make an uiscrollview paging. But it seems just not to work in iOS 6 when I try to implement it in storyboard. I just copied…
Noobass
  • 1,974
  • 24
  • 26
5
votes
3 answers

LINQ and paging with a listview

I have a page with a listview control and a datapager control. The listviews datasource is set programatically using this code: Dim dal as new dalDataContext Dim bookmarks = From data In dal.getData(userid) listview1.DataSource =…
j82374823749
  • 847
  • 4
  • 15
  • 24
5
votes
1 answer

linking and paging in the system without virtual memory support

First of all, is virtual memory a hardware feature of the system, or is it implemented solely by OS? During link-time relocation, the linker assigns run-time addresses to each section and each symbol, in the generated executable Do those…
5
votes
4 answers

MVC3 razor Webgrid paging and sorting with more than 2000 records

I am using a webgrid similar to the one mentioned here @{ var grid = new WebGrid(canPage: true, rowsPerPage: ThisController.PageSize, canSort: true, ajaxUpdateContainerId: "grid"); grid.Bind(Model.Employees, rowCount: Model.TotalRecords,…
Millar
  • 1,095
  • 6
  • 16
  • 34
5
votes
2 answers

gridview paging is not working

I have a gridview control, however, when I click the page number, I get an error "Page not found". What am I missing here? My code is:
DNR
  • 3,706
  • 14
  • 56
  • 91
5
votes
3 answers

Does Devexpress GridControl for win forms support paging?

Does Devexpress GridControl for win forms support paging? If yes, how does it work? How can i use paging to show some data in a grid control? Any example would be appreciated
tinti123
4
votes
3 answers

SlickGrid vertical scroll bar not displaying properly unless the filter is displayed/hidden to re-size the viewport

I'm just starting to use SlickGrid but I've had a lot of success creating a remote model that can interact with the paging plugin. The only problem I have seems to be a browser issue, but I'm curious if anyone knows a trick that may resolve the…
Josh Russo
  • 3,080
  • 2
  • 41
  • 62
4
votes
2 answers

Report has paging even with interactive size zero 0 in SSRS

I have a report in SSRS 2005 that consists of three subreports, all four of which have their interactive size set to zero. The three subreports are contained in a list. However, the report still pages (verb) at what looks like 8.5in X 11in. The…
Devin Burke
  • 13,642
  • 12
  • 55
  • 82
4
votes
2 answers

How can i access index of foreach when iterating through ko.computed in knockout.js

i'm building a paged list on the client side with knockout.js and im trying to output the page index with the below code so i get clickable links with numbers so people can switch page.
4
votes
2 answers

The easiest way for paging with MVC3 C#?

Have a website project in MVC3 C # where I retrieve information from the database and presents in a table in my view. I want to use paging to show up to five lines per page. Have been looking for tutorials on Internet but they all seem very advanced…
Xtreme
  • 1,601
  • 7
  • 27
  • 59
4
votes
0 answers

jqgrid grouping with scrolled paging - stuck

I have a scenario where i need to use scrolled paging on my jqgrid, and it works perfectly. But now i need to add dynamic grouping capabilities to the grid as well. The problem I face, is that when I group the grid, only records in teh currently…