Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
968 views

Replace Fragment inside a ViewPager

I'm trying to use Fragment with a ViewPager using the FragmentPagerAdapter. What I'm looking for to achieve is to replace a fragment, positioned in the first page of the ViewPager, with another one. ...
8
votes
3answers
4k views

Android: Saving Fragment state in ViewPager?

I tried out the sample code from the API http://developer.android.com/resources/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentPagerSupport.html and it didn't really work so I ...
7
votes
4answers
5k views

Get focused View from ViewPager

i use the ViewPager for switching views with left/right swipe. The ViewPager needs an Adapter, so i builded this one: public class ListViewPagerAdapter extends PagerAdapter { protected static final ...
7
votes
4answers
2k views

How to page Doctrine2 results

I cant find Doctrine_Pager in Doctrine2 and really need a way to page my query results. Is there a way to use some alternative pager (Pear, Zend)? Please post some example code as well if solution is ...
5
votes
1answer
371 views

Magento add pager toolbar to wishlist

Is it possible to use the catalog collection pager for the wishlist, and if so how can I implement this into the wishlist?
5
votes
2answers
250 views

Turning off the pager in git for the stash command only

I generally like the use of the pager in git, but for git stash the pager annoys me. When calling git stash list, I don't want to be shown the three lines of output in the pager -- it forces me to ...
5
votes
1answer
2k views

How to have 2 pager in jqgrid one at top and one at bottom?

Here is my code $(document).ready(function () { $('#jqgProducts').jqGrid({ url: '/Home/GridSampleData/', // url from wich data should be requested datatype: 'json', ...
5
votes
3answers
4k views

Generate page numbers using javascript/jquery?

How to generate page numbers like the below using javascript/jquery? If the 5 th page is selected i have to show 3,4 and 6,7 and also 1,last page with prev,next... Any suggestion.... EDIT: How to ...
5
votes
7answers
7k views

Updating jQuery Tablesorter plugin after removing a row from DOM

Hey Guys I have some code at the moment that hides a row that is deleted and then removes it using the .remove() function. However I'm having difficulty is making it remain "deleted" as everytime i ...
4
votes
3answers
2k views

Android: Viewpager and FragmentStatePageAdapter

I'm designing an app that allows users to flip between multiple pages in a ViewPager. I've been struggling trying to figure out how it is possible to remove a Fragment instance from a page when it is ...
4
votes
1answer
1k views

How can I format the numbers in viewrecord on jqgrid pager?

When a large number of pages are present, the format of the numbers in the pager is "11 223" but I would like it to be "11,223" View 11 026 - 11 031 of 11 031 should be View 11,026 - 11,031 of ...
3
votes
2answers
62 views

How to make a ruby command line application with pager?

I'm making a command line tool using Ruby. It will print a lot of text on screen. Currently, I'm using shell pipeline (may_app | more) to do so. But I think it's better to has a default pager. It's ...
3
votes
2answers
36 views

display output in a pager

I build a script that should be used with git. It is a python script that writes do stdout. Now I would like to display its output in the pager the user has set in git. I know I could always provide ...
3
votes
2answers
195 views

Syntax Highlighting Pager

Right now, I use most as my pager. While it has helpful syntax highlighting for man pages, it lacks colored syntax highlighting for anything else (I'm specifically looking for diff/C++). Meanwhile, ...
3
votes
1answer
1k views

Unable to position pager (navigation bar) above jqGrid

According the the jqGrid documentation, I should be able to place the pager above or below the jqGrid by moving the pager div. Unfortunately, the pager always renders below the grid. <div ...
3
votes
2answers
1k views

How do you change the size of JQGrid's Edit Dialog Box?

In a JQGrid grid, when you select a row and press the edit button, a dialog box pops up to allow you to enter information in the fields of that row. How do you specify a default height, width, and ...
3
votes
3answers
905 views

PHP pagination class

I am looking for a php pagination class, I have used a rather simple one in the past and it is no longer supported. I was wondering if anyone had any recommendations ? It seems pointless to build my ...
3
votes
1answer
701 views

Symfony Propel Pager - what is the proper way to send it a custom MySQL query?

Here is the query I need to run SELECT REPLACE(REPLACE(SUBSTRING_INDEX(LOWER(table.url), '/', 3), 'www.', ''), 'http://', '') AS domain FROM table GROUP BY domain But I'm having trouble passing ...
3
votes
3answers
1k views

pipe the output of a command into less or into cat depending on length

First, let me state that this is a programming question (and thus does not belong on superuser et. al.) because I'm talking shell programming. This could almost be a golf question, but I do not have ...
3
votes
3answers
9k views

jQuery Cycle pagerAnchorBuilder

I'm using the Cycle plugin for use in a news-rotator. This means I'm using Div's to populate the slides instead of images. My ultimate goal is to make a pager where instead of the usual 1, 2, 3, 4, ...
2
votes
2answers
68 views

How to get a page number by row id in jqGrid

After loading a JSON (using loadonce: true) I get a paged grid. Now, on gridComplete callback I'd like to jump to page that contains a row (specified by ID). I'm frustrated that there is no solution ...
2
votes
1answer
93 views

Re-enabling pager buttons on JQGrid

I have a jqgrid with pager buttons that I want to customize and I would like to keep the buttons (next, forward, first and last) from being disabled once the grid is binded (if my initial query only ...
2
votes
2answers
49 views

sfPropelPager only generates 5 pages

i'm working on a symfony project and needed to create a paging system for long lists. I used sfPropelPager plugin to generate them. I'm using it this way: I print all the pages in diferent ...
2
votes
2answers
85 views

Undetermined sort order when using ROW_NUMBER() OVER decimal column with ties

I have a very strange bug with sql server 2008: To display a pager in a CRUD application details view, I make a sql request to get previous and next record relative to the current, it works well ...
2
votes
2answers
538 views

Android ViewPager with previous and next pages visible?

I am currently building a horizontal gallery of videos. I'd like to make something like that with only one video centered and part of previous and next videos: I first opted for a Gallery but its ...
2
votes
1answer
130 views

GWT CELLTABLE pager How to determine which button is clicked by user?

I am using celltable , GWT2.3.0 How to determine which button is clicked by user ? Is there any way to find out NEXT,PREV,LAST & FIRST button clicked ? Any help or guidance in this matter would ...
2
votes
2answers
245 views

Hide/Show Pager in jQuery Cycle

I am using cycle for a product slideshow in shopify. It works great, but I want to hide the pager if there is only one product image available. Is there a function built into cycle for this? if ...
2
votes
1answer
101 views

Drupal pager won't work with “LIKE” in the query

I can't get this to work when using a query with LIKE. Example: $sql = " SELECT DISTINCT u.uid, u.name, u.status, u.created, u.access FROM d_bi_test_2_shared.users u LEFT JOIN d_bi_test_2.users_roles ...
2
votes
2answers
185 views

2 Pagers on in View - Drupal 6

I am wondering how it would be possible to have a pager at the top and the bottom of my table which I created with Views.
2
votes
3answers
255 views

How to use Pipe in ipython

In linux terminal, when the output of one command is too long to read in one page, i can do this: cat file | less so that i can read and scroll up and down the output from "cat file" how can i do ...
2
votes
2answers
217 views

MySQL the command line and pagers

I cant find anything about this from searching here. I use mysql on the command line at work and I work with fairly large tables so I set the mysql pager allowing a more readable result if I run a ...
2
votes
1answer
93 views

less-like pager for (swi) prolog

The typical workflow in unix is to use a pipeline of filters ending up with a pager such as less. E.g. (omitting arguments) grep | sed | awk | less Now, one of the typical workflows in the ...
2
votes
2answers
633 views

jqGrid tree grid with pager

How do we make a tree grid with pager using jqGrid? I have checked and try the demos, but it didn't show any pager, even though there is a pager div in the code How do create the pager ?
2
votes
1answer
1k views

jqGrid prevent pager navigation?

We use a custom formatter to output html form text boxes. In the case that a user has entered in data and they hit the next/prev button, we want to tell them "you've edited data, hit ok to stay on ...
2
votes
1answer
159 views

jQuery Cycle with defined pager links

I built a player using cycle that cycles through various promos but I want to define the specific descriptive pager links for each page (other than 1,2,3, etc.) I know this should be possible but ...
2
votes
3answers
2k views

jQuery Cycle - #next #prev, goto nextGallery after final slide of currentGallery

I am using jQuery cycle in several galleries with #next #prev navigation and a image counter output. Now I am trying to connect all these galleries together. If the user reaches the final slide of ...
2
votes
1answer
712 views

Pager HTML viewer

We are currently developing a Windows Forms application in VS 2008 C#. This application is for reading long (200 - 300 pages) law documents, and it handles about 30 - 40 docs. The application searches ...
2
votes
2answers
288 views

Jquery Thumbnail Pager with Captions?

I know there has to be an easy solution for this! http://procollage.com/site10/wall-of-fame/favs-cycle.html I have a thumbnail image pager, I just want each slide to have a description underneath ...
2
votes
4answers
5k views

Where is my Drupal View pager?

I have a Drupal 6 site where I've created a view that shows a list of nodes. Nothing complicated -- except that when I choose "use pager" --> "yes" (and choose the "full pager" option), the pager ...
1
vote
1answer
14 views

pager decided to switch from horizontal to vertical

I am frustrated :( I have been sick for a while and now "happy new years" my customer calls me to let me know that the pager of the gallery on his website is broken. I have been able to fix most of ...
1
vote
1answer
60 views

GWT SimplePager : How to provide GoTo Functionality in pager?

I am usign GWT2.3. We developed CustomPager by overriding SimplePager. We override createText() method such a way that we are showing string like "Page 1 of 4" using following code public String ...
1
vote
0answers
19 views

Where to store table data filter states for web page to retain state in future?

Given two or more sortable tables with filter option, when any user (guests and registered) changes filter/sort/pager state of any table in site, the state of filter/sort/page should remain ...
1
vote
1answer
94 views

Table sorter with pager plugin - Events does not bind on other pages?

I am working on ASP .Net MVC 3 application. I am using the table sorter plugin along with the pager plugin for loading my list. All my event (I am not using Jquery live but just click event for Edit ...
1
vote
2answers
166 views

Multiple instances of jQuery Cycle on page (and targeting existing thumbnails with pagerAnchorBuilder)

I'm stuck getting multiple Cycle slideshows (with thumbnails) to work on my blog.... all of the slideshow thumbnails are targeting the first instance of the slideshow on the page, and the captions are ...
1
vote
1answer
53 views

cheapest method to send small (24 bytes) data over long distances (600 miles)

I have a friend who is working on a project where they need to deploy a large number of devices over the midwest. For simplicity let's say these are temperature gauges - they read the current ...
1
vote
1answer
73 views

Class design issue in C#. Pager for control

I have implemented a custom control that takes some custom classes as items and draws them. I want to implement a paging class in order to turn pages but in a way that it can be customized. So far i ...
1
vote
1answer
138 views

Add row to a table with tablesorter and pager

I'm trying to add a row dynamically to a tablesorter table with a pager. Whenever i do, all other pages get removed. How can i add it? alternatively, how can i remove the oager from a table and return ...
1
vote
0answers
148 views

CollectionPager Problem With UpdatePanel [closed]

Possible Duplicate: CollectionPager Problem With UpdatePanel I have a problem with collectionpager and repeater. When I load the page, collectionpager is working fine.. But I click the ...
1
vote
1answer
104 views

jQuery Tablesorter w/ Pager plugin preloading images

I am using the TableSorter jQuery plugin with associated Pager plugin as well. I am having MySql query results displayed in this table. The thing is, after I retrieve a rating result from the query, ...
1
vote
2answers
82 views

Jquery help with pager and display elements.

I have a ul li structure like this: <div> <a href="#" class="next"></a> <a href="#" class="prev"></a> <ul> <li class="element ...

1 2 3 4