Tagged Questions
The custompaging tag has no wiki summary.
2
votes
2answers
86 views
Paging and sorting based on custom .NET properties with Linq to SQL
This is a followup to this question about custom paging in ASP.NET.
Say I have a table defined:
CREATE TABLE Person
(
ID int identity(1,1) not null primary key,
FirstName varchar(50),
LastName ...
2
votes
2answers
1k views
custom paging on gridview control
below code works fine if i remove the PagerSetting or remove PagerTemplate so if i have both (PagerSetting & PagerTemplate) then my page number is not display.
my qeustion is: how can i display ...
2
votes
3answers
3k views
ASP.NET Gridview Paging Problem
I have a gridview that is databound in the code-behind using a stored procedure. I am handling the Paging event in the code as well, but whenever I click on a page number, I keep getting the empty ...
1
vote
1answer
68 views
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 ...
1
vote
5answers
646 views
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. ...
1
vote
1answer
272 views
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?
1
vote
2answers
253 views
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 ...
1
vote
2answers
2k views
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 ...
1
vote
3answers
3k views
Access Control inside GridView Pager Template - ASP.NET
I am trying to access a LinkButton that is inside a PagerTemplate in a GridView.
However, I am getting a NullReferenceException and I don't know what I am doing wrong here.
I have tried the ...
1
vote
2answers
2k views
devexpress aspxgridview - custom text for paging
Is there a way to customize the top and bottom paging display? Like I want to display the
Top as "Now displaying 1 - 10 of 1000 records for ".
Bottom page as normal grid style like [1][2]...
1
vote
2answers
379 views
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 ...
1
vote
2answers
1k views
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 ...
0
votes
0answers
81 views
uiscrollview with half paging in storyboard
- (UIView *) hitTest:(CGPoint) point withEvent:(UIEvent *)event {
if ([self pointInside:point withEvent:event]) {
return scrollView;
}
return nil;
}
ok,i know this was ...
0
votes
0answers
33 views
MVCContrib CustomPagination WCF Serialization
All the parameters for CustomPagination<T> (datasource, page number, page size, and total items count) I retrieve in the WCF Service. It would be awesome if I could instantiate CustomPagination ...
0
votes
0answers
230 views
PagedDatasource for gridview paging
I am using PagedDataSource for gridview's custom paging. Here is the code:
PagedDataSource dataSource = new PagedDataSource();
int virtualRowCount = ...
0
votes
0answers
17 views
Page ListView based upon data content
Me again, trying this from a different angle.
Ok, I have the following code that pulls back a lovely ListView:
<asp:ListView ID="ListView1" runat="server" ...
0
votes
0answers
224 views
Pagination script in Twig - converting PHP to Twig
I have a custom pagination script here (well, technically, a GPL script, but adapting it for my localhost usage): http://pastebin.com/EyhPw5Kf
and this is the page for displaying the pagination:
...
0
votes
1answer
249 views
Problem in DataGrid custom paging
I want to implement the custom paging with DataGrid and don't to move to GridView for that as done in this link A Neat Solution to GridView Custom Paging, because the project that I am working is ...
0
votes
1answer
386 views
ObjectDataSource paging and extra parameters
I'm using an ObjectDataSource to sort/page/filter as below:
<asp:ObjectDataSource
ID="odsCompaniesIndex" runat="server" EnablePaging="true"
...
0
votes
2answers
853 views
Standardize the gridView pager template
I have a custom pager template on one gridview that the client now wants applied to several other gridviews within the same site. It seems like extending the GridView object makes the most sense, but ...
0
votes
0answers
80 views
JQuery Editable pager - how do I make each record unique for button click etc?
I am creating a JQuery paging control. The Jquery paging control needs all the records in one to be rendered then the jquery pages it, which is cool. But.....I want to have a button on each record in ...
0
votes
1answer
662 views
Custom paging/sorting for GridView filled by CodeBehind Datasource?
I'm coding a report page. In this page, there are two date fields for user to filter the date and the GridView is filled depending on these dates in the CodeBehind (When user click the button view). ...
0
votes
1answer
301 views
Total Number of records required in paged .NET datagrid control
I am using a data grid and has bound a data source with it.
I am trying to get the total number of records in the grid in overriden InitializePager method from pagedDataSource DataSourceCount.
I ...
0
votes
2answers
586 views
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 ...
0
votes
4answers
205 views
Autopaging or custom paging which is better in datagrid?
i used datagrid control in .net platform... but now i am in big confusion .. that is ..which is better to used custom or autopaging option..
gud explaination or example is needed..
i dont know ...
0
votes
2answers
376 views
Paging in asp.net mvc like blogger
I like to implement a paging in my asp.net mvc(C#) application like the one in blogger(blogspot.com).
The Paging should look like:
`New Posts Home Older ...
0
votes
1answer
353 views
how to let the DataPager know the number of total records in the DataSource in custom paging?
The default paging mechanism needs to have the entire contents of the query that's to be paged through each time the ListView is rendered so that it can correctly determine how many pages the data can ...
0
votes
2answers
431 views
Subsonic-Paging-Order problem
I have a datagrid where I am using the custom paging option (ref: http://subsonicproject.com/querying/webcast-using-paging/) in the Subsonic framework.
I also have a dropdown that filters the data ...
0
votes
1answer
824 views
Problem in Custom Paging with ASP.NET 2.0 GridView
I have a Database table containing product information as follows:
ProductID, KeywordID, ProductDescription
and there are some keywords stored in a Keyword table as
Keyword ID, KeywordDescription
I ...
0
votes
2answers
2k views
Custom Paging on GridView Populated by Button Press
I've got a Gridview that's populated by a Search button and I'm not sure how to go about doing custom paging for it. I run the search query using sp_executeSQL right now and it returns the entire ...
0
votes
1answer
4k views
ASP.NET DataGrid and custom paging
I'm trying to implement a DataGrid in ASP.NET, and want to achieve custom paging so that I don't have to provide all the data in one go. I've spent several hours researching on the internet, but ...
-4
votes
0answers
23 views
How to add custom paging in jsp page [closed]
I am using Jsp web page and mysql for database.I want to add cutom paging in my jsp page so that i decrease the load on one page and i want to show single record on the active record and rest of the ...