Questions tagged [custom-paging]
32 questions
0
votes
0 answers
custom paging with objectdatasource but sorting on all records
I'm using objectdatasource with gridview using custom paging (i.e. getting per page records), the sorting works fine but only for current page. But I want to sort on all records. Is there any way to sort on all records but getting paged records?

hotcoder
- 3,176
- 10
- 58
- 96
0
votes
1 answer
How to create a UIScrollview where it shows a portion of a view either side?
I'm trying to create a UIScrollView where it will show a portion of the views contained in the UIScrollView on either side.
Here is a picture;
The picture shows a grey area which is the parent or main view. The purple area is the UIScrollView. …

zardon
- 2,910
- 6
- 37
- 58
0
votes
2 answers
ASP.NET pagination - getting it to work properly?
I currently have an ASP.NET script for a TV guide which displays the data from the database properly in a tabl, as mentioned at
http://www.15seconds.com/issue/050407.htm and it works well.
The code for getting the MySQL is the same as that of the…

ascend86
- 3
- 3
0
votes
0 answers
Custom Paging not working in ListView Asp.Net
While writing the code below I encountered this error saying ListViewPageEventsArgs could not be found.
I have already added the code below to the template :
OnPageIndexChanging="lvListScreen_PageIndexChanging"
Do you guys know why I'm having this…

Vivek Puri
- 43
- 1
- 7
0
votes
0 answers
Prevent paging on custom "batch edit" radgrid if changes haven't been saved
We have a pretty customized "batch edit" type screen. Out users frequently make changes, then forget to hit Save before moving on to the next page. I have tried the solutions found here:
[a link]…

Laura Bryngelson
- 91
- 1
- 8
0
votes
1 answer
Paging a Listbox control in WPF
I have a WPF ListBox with it's ItemSource property bound to an ObservableCollection. Each ListBox Item has many controls that could take some time to load up.
I would like to only display/load 5 ListBox items at a time, with some paging support or…

KyleGobel
- 109
- 1
- 2
- 7
0
votes
1 answer
How to do Custom Paging
I want to implement server side paging in my Silverlight application. To get an idea of the steps that I would require I went through this custom paging in asp.net
article where they described how to design a SQL query to return the results…

Stack user
- 47
- 6
0
votes
1 answer
Custom Paging Size for TableView with Header in Swift (Scroll One Cell At a Time)
I have a UITableView with multiple sections, each with a header. The table's sizing is such that one header and one cell take up the entire frame of the table. I would like to allow the user to scroll the table only one cell at a time. When I set…

Justin Leonard
- 81
- 1
- 11
0
votes
1 answer
how to support output paging in C++ application
Our application can generate some fairly long report files interactively. We use C++ to generate all the output, but redirected through a TCL console and TCL channel so we can take advantage of output logging etc.
Is there any common way to support…

Sam Appleton
- 29
- 3
0
votes
1 answer
Paging in Listview with a dynamic number of rows group
I'm working on an exam system .
I created a List view to display all the Multiple choice or True false Questions then I need to set the paging to 5 Questions per page.
The issue here is the total of the multiple choices Answers for each question…

Mashaeil A. Yusufi
- 11
- 1
0
votes
1 answer
paging in asp.net gridview using repeater control
I am using asp.net gridview and for paging I am using repeater control.
But my paging looks like this
What I want is that it should look like this
My code where I am populating my pager is given below
private void PopulatePager(int recordCount,…

fc123
- 898
- 3
- 16
- 40
0
votes
3 answers
how to achieve paging in a grid view in code
I'm using ASP.net web application with c#. In my web application I have a webpage with a data grid view.
I'm using this method to bind data to data grid view
public void fillGridByALLBDetails()
{
GVView01.DataSource = new…

Sahil
- 137
- 1
- 1
- 12
0
votes
2 answers
Problem with custom paging in ASP.NET
I'm trying to add custom paging to my site using the ObjectDataSource paging. I believe I've correctly added the stored procedures I need, and brought them up through the DAL and BLL. The problem I have is that when I try to use it on a page, I…

JohnCC
- 615
- 7
- 20
0
votes
1 answer
telerik radgrid custom pagination when total number of records is not known
I am using telerik radgrid in my .net aspx page. I want to implement custom pagination. But for this i don't have the total record count initially. Want to get more data from server when user clicks on the next page link after reaching the last…

user3378750
- 1
- 3
0
votes
2 answers
iOS : How to do proper paging in UIScrollView?
I've a UIScrollView of size (320,160). I'm adding some UIImageView into it, which are of size (213,160). The first UImageView starting from 54 (x) and so on, I've added a space of 5.0 in between each UIImageView. I've also enabled pagingEnable in IB…

Hemang
- 26,840
- 19
- 119
- 186