Questions tagged [custompaging]
68 questions
1
vote
1 answer
MVCContrib CustomPagination WCF Serialization
All the parameters for CustomPagination (datasource, page number, page size, and total items count) I retrieve in the WCF Service. It would be awesome if I could instantiate CustomPagination right there, in WCF and pass it back to my…

Dmitry Efimenko
- 10,973
- 7
- 62
- 79
1
vote
2 answers
how to get the n-th record of a datastore query
Suppose that I have the model Foo in GAE and this query:
query = Foo.all().order('-key')
I want to get the n-th record. What is the most efficient way to achieve that?
Will the solution break if the ordering property is not unique, such as the one…

shanyu
- 9,536
- 7
- 60
- 68
1
vote
1 answer
ObjectDataSource: needs to 'show all records' on demand instead of paging
I have a GridView and ObjectDataSource set up to do custom paging and everything was fine. Now the client wants a 'show all' button. In the event handler for this button, what can I do to achieve this?
Thanks for your time.

Keith Myers
- 1,379
- 2
- 15
- 29
1
vote
0 answers
Repeater is becoming huge while using it as a custom pager doing custom paging in gridview
My project is in dot net framework 4.0.
One of the page has a huge number of records to be displayed in the gridview and hence I am using custom paging which is going fine.
The problem is the pager which I have made using a repeater…

DeepakVerma
- 99
- 10
1
vote
2 answers
custom paging slider missing config file for react.js
I am creating the custom paging slider from https://react-slick.neostack.com/docs/example/custom-paging/ I copied the code directly from the website and follow the instructions and installed the packages. When i try to run the code though i get the…

dwill09
- 11
- 9
1
vote
2 answers
Button Click event getting fired after rowdatabound for grid view
When I click on a button which is outside of the GridView in my asp.net page, the GridView rowdatabound event is getting fired before OnClick event for the button. I am using the button for custom paging so I need to reverse the order of these…

Amit
- 35
- 3
- 7
1
vote
0 answers
How to setup paging with Gridview and code behind (no data source)
I am looking for some help on paging using GridView and a data source that is set in my code behind. I want to set my queries to the database to only return 50 records at a time (about 20,000 in all). This all works except I can't get paging setup…

Will73
- 11
- 3
1
vote
4 answers
GridView paging in C#
I am using PageIndexChanging event for handling GridView paging in C#. But don't know how can to use PageSize/PageNumber/PageCount there. In other word my code is forced to return all data always. Note following code:
protected void…

Afshar Mohebi
- 10,479
- 17
- 82
- 126
1
vote
1 answer
accessing paged data source from itemDataBound in asp.net
I've bound my repeater to a PagedDataSource and I want to get the PagedCount from the ItemDataBound event. I've tried a few things and it's not working. Does anyone know how to do this?

user204588
- 1,613
- 4
- 31
- 50
1
vote
2 answers
ASP.NET Custom Paging
How to keep custom paging for dynamic result sets ? (i.e) based on 10 Dropdowns selection my stored procedure will Dynamically generates resultset,but it populates million records.
Row statically know Record count,cusom paging is efficient,but how…

user160677
- 4,233
- 12
- 42
- 55
1
vote
3 answers
Limit the page numbers to show on Custom Paging
http://www.aspsnippets.com/Articles/Custom-Paging-in-ASPNet-GridView-using-SQL-Server-Stored-Procedure.aspx
Based on the tutorial above, I was able to create a custom paging on my gridview, However, I want to limit the page number to be shown on the…

rickyProgrammer
- 1,177
- 4
- 27
- 63
1
vote
1 answer
Querying RavenDb with max 30 requests error
Just want to get some ideas from anyone who have encountered similar problems and how did you guys come up with the solution.
Basically, we have around 10K documents stored in RavenDB. And we need the ability to allow users to perform filter and…

developer
- 718
- 9
- 28
1
vote
3 answers
How to implement Gridview Custom paging using Stored Procedure?
Can someone redirect me to your own blog link or any other link explaining complete tutorial about how to implement gridview custom paging using stored procedure?
My search in google giving me old articles from year 2006. Right now I am using…

Jango
- 5,375
- 14
- 57
- 63
1
vote
1 answer
RadGrid doesn't update data during paging
I am using a Telerik RadGrid, and we're trying to get it to work with CustomPaging. I feel like I'm close, but it's not updating the data on the web client.
My aspx page code looks like this:

Beska
- 12,445
- 14
- 77
- 112
1
vote
2 answers
SQL ROW_NUMBER() ... between x and y breaks Inner join
I have this inner join statement that works for the most part, but when I add custom paging the join returns a null set. Any suggestions will be appreciated.
This returns the results that I expect
SELECT [Id]
,[Title]
FROM
(SELECT…

user2817020
- 11
- 2