Questions tagged [pager]

481 questions
13
votes
5 answers

How to append new line character in node.js?

I'm new to node.js and I'm trying to write a program that receives http requests and forwards the contents through a socket. At the other end of the socket is a paging system that needs messages terminated with a new line character. So far, it works…
David
  • 207
  • 2
  • 3
  • 9
12
votes
5 answers

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, pygments is a wonderful program. I can easily…
Travis Gockel
  • 26,877
  • 14
  • 89
  • 116
12
votes
4 answers

How do I use vim as 'git log' editor?

When I run git log, what exactly is the editor git log is using? Also: Is there anyway I can use vim as my default editor for git log? If I want to search against the git log, what's the best way? Now I'm doing something like: git log | grep…
Shengjie
  • 12,336
  • 29
  • 98
  • 139
11
votes
6 answers

PullRefreshIndicator overlaps with ScrollableTabRow

I'm starting to learn about Jetpack Compose. I put together this app where I explore different day-to-day use cases, each of the feature modules within this project is supposed to tackle different scenarios. One of this feature modules – the…
11
votes
2 answers

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.
Tim Colton
  • 205
  • 2
  • 4
  • 8
11
votes
2 answers

How to update ViewPager content?

i have this PageAdapter with days of the week, for each pager I have the same Layout. My problem is how update the right listView when change the day. When I change the day the Pager create a new pager and delete other, when this happened my…
weldsonandrade
  • 606
  • 1
  • 9
  • 25
10
votes
2 answers

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 which data should be requested datatype: 'json', // type of data mtype: 'GET', …
munir
  • 101
  • 1
  • 3
9
votes
5 answers

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 no longer visible on screen, cache it (to, say,…
Android Noob
  • 491
  • 2
  • 7
  • 10
8
votes
2 answers

PostgreSQL: How to scroll up in long output

Say I get a large query back. Postgres gives me the --More-- indicator. Pressing moves down a page. Pressing moves down a line. Is there a way to scroll back up? Is it possible to pipe the output to something like less? I'm…
Lorem Ipsum
  • 4,020
  • 4
  • 41
  • 67
8
votes
5 answers

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 available. Google didnt helped me, so hope folks…
pentarim
  • 463
  • 1
  • 6
  • 18
8
votes
4 answers

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, etc. - it instead returns the first H3 tag in the…
Casey Wight
  • 83
  • 1
  • 1
  • 4
8
votes
1 answer

ViewPager PagerAdapter with cursor - CursorLoader.onLoadFinished doesnt get called with different query

I am doing like a quote application that pulls the quotes from the database and I need to display quotes in a ViewPager. I have created my CursorPagerAdapter which seems to work well. public class MyCursorPagerAdapter extends PagerAdapter { …
urSus
  • 12,492
  • 12
  • 69
  • 89
7
votes
2 answers

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 location of the dialog box that pops up?
JayD3e
  • 2,147
  • 3
  • 21
  • 30
7
votes
1 answer

Is there a way to display results in a pager in Cassandra cqlsh?

If the output of a query cannot be properly displayed within the dimensions of the terminal used to issue the query, the ASCII-art used to draw the table layout usually breaks and becomes a more of a hinderance than a help when trying to read the…
aef
  • 4,498
  • 7
  • 26
  • 44
7
votes
4 answers

How to force ListView to show first page programmatically

I have a paged ASP.NET ListView. The data shown is filtered, which can be controlled by a form. When the filter form changes, I create a new query, and perform a DataBind. The problem however, when I go to the next page, and set a filter, the…
doekman
  • 18,750
  • 20
  • 65
  • 86
1
2
3
32 33