Questions tagged [custompaging]

68 questions
1
vote
1 answer

SqlDataSource custom paging

I need use sqldatasource(stored proc) to bind a gridview.
Mike Long
  • 363
  • 4
  • 16
1
vote
2 answers

Paging in ASP.NET gridview

I am looking for paging in which I can enter values in a box to reach at desired page something like this. I googled it. but could not find this. Help me if you have links or code. I am working on asp.net 4.0. Thanks
syed mohsin
  • 2,948
  • 2
  • 23
  • 47
1
vote
2 answers

Gridview BottomPagerRow not finding

I placed a ASP DataRepeater in the PagerTemplate of a GridView. I need to find the DataRepeater in my code I'm Trying this. Repeater rptPager = (Repeater)gv_Inbox.BottomPagerRow.FindControl("rptPager"); But this is Throwing a Exception Object…
Krishna Thota
  • 6,646
  • 14
  • 54
  • 79
1
vote
3 answers

Custom paging in ASP Gridview using stored procedures

I'm trying to create a GridView with custom paging. I have very large data so In order to Increase ten Speed I'm trying to do Custom Paging. I wrote a SQL Server stored procedure that takes input parameters SelectedPageNumber, SelectedPageSize and…
Krishna Thota
  • 6,646
  • 14
  • 54
  • 79
1
vote
1 answer

jQuery paging using .on() and .off() to disable events causes non-responsive UI elements

I've written a custom paging scheme using jQuery 1.8.0. I'm binding event handlers to the backwards and forwards buttons. To disable the backwards button when on page 1, I'm using the .off() function to disable the binding. When I page up, I call…
ericso
  • 3,218
  • 7
  • 29
  • 36
1
vote
2 answers

Numerical paging for GridView

I am using a GridView to display data from database. Using ASP.Net 4.0 with C#. The GV is given DataTable as its data source. I need to display numerical paging to this grid where the user can see Next and Previous buttons along with "page number…
Anil Soman
  • 2,443
  • 7
  • 40
  • 64
1
vote
1 answer

Paging with large dataset- Linq2Sql, Repeater

I know such questions are in tonns on SO, but my question is little bit different. Generally , i found in SO, Custom Paging using Linq2Sql/ Sql. No I am not asking the same, i am done with that, my issue is with the pages(data pager) displayed on my…
user240141
0
votes
1 answer

Updatepanel and fancybox not working unless fancybox is opened twice

Ok I have a page being pulled through onto the fancybox popup, (note: the paging works 100% on the page itself), but when on the fancybox I attempt to page through the repeater and nothing happens. I then close the popup and reopen it without…
Reaper
  • 89
  • 6
0
votes
0 answers

How we can create custom laravel 8 pagination page

I'm using this code for custom pagination with dynamic links. @if ($paginator->hasPages())
    @if ($paginator->onFirstPage()) …
0
votes
0 answers

Wordpress Pagination on homepage

I've inserted posts in my homepage with pagination using php. My problem is when I click page 2 or other pages the content of homepage is always there but the posts are good they are changing. I would make the other pages only having post not on…
0
votes
0 answers

Slick Slider - customPaging (ie. 01/04) - Change color and font-size

Using Slick.js - I want to change the color and font-size of the pages when it's active, like the example: With jQuery I'm using this: $('#home .main-slider').slick({ infinite: true, dots: true, dotsClass: 'slider-paging-number', …
MSPP
  • 1
  • 1
0
votes
1 answer

React component state do not change after setting it on button click

I'm Still learning react hooks so bear with me; I'm writing a custom server side pagination component; then for loop through the pages to render them like so : const [activePageNumber, setActivePageNumber] = useState(1); for (var i = 1; i <=…
Voice Of The Rain
  • 495
  • 1
  • 8
  • 24
0
votes
1 answer

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 have to show a paged report for products on a page…
MSIL
  • 2,671
  • 5
  • 24
  • 25
0
votes
2 answers

How to put rounded corners to canvas image?

I am drawing an image on Canvas in following manner. void paint(Canvas canvas, Size size) { Paint paint = Paint(); paint.color = Colors.white; canvas.drawImageRect( img, Rect.fromLTWH(0, 0, img.width.toDouble(),…
Janaka
  • 2,505
  • 4
  • 33
  • 57
0
votes
1 answer

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 resultset. I'd like to know what steps I should take…
Caveatrob
  • 12,667
  • 32
  • 107
  • 187