Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

41
votes
5answers
25k views

Making TextView Scrollable in Android

I am displaying text in a textview that appears to be too long to fit into one screen. I need to make my TextView scrollable. How can i do that? Here is the code final TextView tv = new ...
28
votes
4answers
14k views

How do I scroll a row of a table into view (element.scrollintoView) using jQuery?

I'm dynamically adding rows to a table using jQuery. The table is inside a div which has overflow:auto thus causing a vertical scrollbar. I now want to autoscroll my container div to the last row. ...
23
votes
1answer
1k views

IntelliJ Idea disable font increase/decrease on CMD+scroll

I am using IntelliJ IDEA 9.0.2 on Mac OS X - with the Magic Mouse. Whenever I press the command button and move my finger a micrometer or two on the surface of the mouse, IDEA immediately increases or ...
15
votes
7answers
3k views

FireFox 4 no longer supports scrollable TBody - workarounds?

Well as mentioned in the Firefox 4 changelog, there will be no longer support for scrollable <tbody>'s. There are a bunch of workarounds - javascript or 2 seperate tables - but none of them ...
14
votes
3answers
4k views

Detect if a page has a vertical scrollbar?

I just want some simple JQ/JS to check if the current page/window (not a particular element) has a vertical scrollbar. Googling gives me stuff that seems overly complex for just this basic feature. ...
13
votes
4answers
8k views

Jquery - Check: If scrollbar visible (div with overflow:auto)

is it possible to check the overflow:auto from a div? for example HTML <div id="my_div" style="width: 100px; height:100px; overflow:auto;" class="my_class"> * content </div> JQUERY ...
12
votes
4answers
8k views

programmatically disable scrolling?

Using jquery I would like to disable scrolling (of the body) my idea is to a: set body{ overflow: hidden;} b: capture current scrollTop();/scrollLeft() c: bind to the body scroll event, set ...
9
votes
2answers
93 views

HTML/Javascript: remember scroll independent of the window size

I've got a webpage for reading books online. I'd like to save the position inside the document so when a user resumes his reading, he starts in the point where he previously was. I can get the scroll ...
9
votes
2answers
5k views

Horizontal UIScrollView inside a UITableViewCell

I'm trying to create the exact same effect as in the AppStore app for viewing screenshots: inside a UITableView, I have custom subclasses of UITableViewCell's. One of them is designed to show previews ...
9
votes
4answers
3k views

link with href=“#” scrolls page to top when used with jquery slidetoggle

I'm using jquery's slidetoggle to show/hide divs. the element that controls the sliding is a text link ( some text inside <\a>) which has href="#" so it will look like a link (underline, cursor ...
9
votes
2answers
3k views

WPF ListBox Scroll when item added

I have a WPF ListBox that is set to scroll horizontally. The ItemsSource is bound to an ObservableCollection in my ViewModel class. Every time a new item is added, I want the ListBox to scroll to the ...
9
votes
6answers
3k views

Emacs mouse scrolling

When I scroll in Emacs using mouse wheel, it scrolls 5 lines at a time, which, I think, is way too much - where do I set a new value? Also, when I scroll in Emacs with a mouse (either wheel or ...
9
votes
8answers
6k views

“Endless scrolling” effect in a HTML table

I am displaying a scrolled data table in a web page. This table has several thousands of dynamic rows, so it is loaded from the server (via AJAX). The user can scroll up and down, so what I need is ...
8
votes
7answers
353 views

TextView Within Gallery

i have scrollable TextView and Gallery when i enable the onTouchEvent for the TextView, i cant navigate throught the Gallery and if i disable the onTouchEvent, i can scroll right and left throught the ...
8
votes
3answers
3k views

How to know when UITableView did scroll to bottom

I would like to know when a UITableView did scroll to bottom in order to load and show more content, something like a delegate or something else to let the controller know when the table did scroll to ...
8
votes
1answer
2k views

infinite-scroll jquery plugin

I am trying to set up infinite-scroll on a site I am developing with Coldfusion, I am new to javascript and jquery so I am having some issues wrapping my head around all of this. Do I need to have ...
8
votes
4answers
3k views

Simulate position:fixed in jQuery

I have a header that is larger than the width of the page so that I can't use position:fixed to set him on top of the page, because I absolutely need to be able to scroll horizontally. I don't think ...
8
votes
5answers
4k views

jQuery UI sortable scroll helper element offset Firefox issue

I have a problem with a jQuery UI 1.7.2 sortable list in Firefox 3.6, IE7-8 work fine. When I'm scrolled down a bit, the helper element seems to have an offset of the same height that I'm scrolled ...
8
votes
6answers
16k views

How to make div follow scrolling smoothly with jQuery?

I'm creating a blog layout, which has an sidebar. In sidebar there are sections/boxes, but the last one of these boxes should follow scrolling when none of the other boxes are visible. So, when user ...
8
votes
3answers
7k views

How can I scroll to a specific location on the page using jquery?

Is it possible to scroll to a specific location on the page using jQuery? Does the location I want to scroll to have to have: <a name="#123">here</a> Or can it just move to a specific ...
8
votes
5answers
2k views

prevent Scroll “bubbling” from element to window

I have a modal box window (pop-up) that contains an iframe, and inside that iframe there's a div that is scrollable. When I scroll the iframe's inner DIV, and it has reached its top or bottom limit, ...
7
votes
1answer
12k views

javascript scroll event for iPhone/iPad?

I can't seem to capture the scroll event on an iPad. None of these work, what I am doing wrong? window.onscroll=myFunction; document.onscroll=myFunction; ...
7
votes
2answers
8k views

How to Programmatically Scroll Android WebView

I'm trying to programmatically scroll a WebView to the location of a particular element in the DOM tree. But so far I haven't been able to get the WebView to respond to scroll requests. I've tried ...
7
votes
1answer
443 views

internet explorer 7 iframe unloads when going back

Hi this is my first post here, so please be kind ;-) i'm implementing a browser history manager, just like rsh or yui browser history manager. The idea was not to constantly poll the url hash of a ...
7
votes
2answers
246 views

How to get a correct visible rect during a validateTree?

First to describe the problem: During a re-layout due to a change in width or height, Java's ScrollPaneLayout requests the preferredSize of it's children BEFORE setting the bounds of it's viewport. On ...
7
votes
4answers
327 views

Detecting divs as rendered in the window to implement Google-Reader-like auto-mark-as-read?

When using Google Reader and browsing RSS entries in the "Expanded" view, entries will automatically be marked as 'read' once a certain percentage of the div is visible on the screen (difficult to ...
6
votes
4answers
2k views

android: ViewPager and HorizontalScrollVIew

I have a HorizontalScrollView inside my ViewPager. I set requestDisallowInterceptTouchEvent(true); for the HorizontalScrollView but the Viewpager is still sometimes intercepting touch events. Is ...
6
votes
3answers
229 views

Event that gets fired before (not after!) DOM elements are scrolled in javascript

Basically, I would like to do some pre-processing before the DOM elements are scrolled. The problem is that the scroll event is fired AFTER the DOM elements are scrolled. I know that when you use the ...
6
votes
3answers
3k views

WPF TreeView - How to scroll so expanded branch is visible

When I expand items in my treeview so that scrolling is necessary, a scrollbar appears. However, it doesn't scroll down for the newly expanded branch of items - they get cropped by the bottom of the ...
6
votes
3answers
2k views

Nested Scroll Areas

I creating a control for WPF, and I have a question for you WPF gurus out there. I want my control to be able to expand to fit a resizable window. In my control, I have a list box that I want to ...
6
votes
1answer
5k views

C# ListView mouse wheel scroll without focus

I'm making a WinForms app with a ListView set to detail so that several columns can be displayed. I'd like for this list to scroll when the mouse is over the control and the user uses the mouse ...
6
votes
4answers
7k views

Scrolling Overflowed DIVs with JavaScript

I've got a div that uses overflow:auto to keep the contents inside the div as it is resized and dragged around the page. I'm using some ajax to retrieve lines of text from the server, then append them ...
5
votes
1answer
71 views

How to remove onclick delay and keep the fast scrolling in mobile web application

I am developing a Web application on OS Android using PhoneGap. For a quick response from the user interface buttons, I use the following solution: ...
5
votes
5answers
242 views

100% DIV width is not really 100%

When I have a <div> with width: 100%, it is not really 100%: <div id="div">testtesttesttesttest</div> ... #div { width: 100%; background-color: red; } Now when you resize ...
5
votes
2answers
333 views

html + css: horizontal scroll lanes?

hey guys, really simpel markup: <div id="page-wrap"> <div class="post horizontal"> <h2>Headline 01</h2> <div class="entry"> ...
5
votes
2answers
547 views

How can I make WPF ScrollViewer middle-click-scroll?

Clicking the middle mouse button (aka: mouse wheel) and then moving the mouse down slightly lets users scroll in IE, and most Windows apps. This behavior appears to be missing in WPF controls by ...
5
votes
2answers
1k views

Matplotlib/Pyplot: How to zoom subplots together AND x-scroll separately?

I previously asked the question "How to zoom subplots together?", and have been using the excellent answer since then. I'm now plotting just two sets of time-series data, and I need to continue to ...
5
votes
2answers
209 views

vim can i scroll up/down inactive window?

I've splitted my window into 2 windows. And i need to scroll inactive window. Example to scroll up/down preview window without placing a cursor into preview window.
5
votes
2answers
731 views

WPF - reset ListBox scroll position when ItemsSource changes

I currently have a ListBox whose ItemsSource collection is bound to a property on my viewmodel, of type IEnumerable. When that preoprty's reference changes, the ListBox updates as expected, however I ...
5
votes
2answers
347 views

How can I tell which way a scrolling pane is scrolling in javascript?

I have the following jquery to handle scroll events on a particular div and write some content: $('#myDiv').scroll(function(eventData) { if(eventData.isGoingUp) ...
5
votes
1answer
831 views

Winforms RichTextBox: How can I determine how many lines of text are visible?

I have a Winforms app containing a RichTextBox. How can I determine how many lines of text are displayed, currently visible? Reason: I want to scroll the caret to the middle of the RichTextBox. ...
5
votes
3answers
4k views

add a hash with javascript to url without scrolling page?

add a hash to url without scrolling page? with javascript i open page i scroll down i click link that adds a hash (maybe with a value #test) (example: http://www.example.com/#test) the page MUST not ...
5
votes
1answer
2k views

Trouble using GWT ScrollPanel

I'm trying to show a large image inside of a ScrollPanel. The ScrollPanel is one of the tabs of a TabPanel. All this is inside of a VerticalSplitPanel. I expected to have the ScrollPanel doing the ...
5
votes
3answers
17k views

Get current scroll position and pass it as a variable with a link?

I'll be honest, I'm way out of my depth here. I've created a pagination system where you click on a link it reloads the page and a certain number of list items are shown in an unordered list. When you ...
5
votes
4answers
2k views

How can I reproduce the flick-to-scroll behavior of the iPhone UIScrollView in my own custom view?

I would like to reproduce UIScrollView's flick-to-scroll behavior, but I don't want to use (or can't use) that class. What can I do?
5
votes
2answers
6k views

How to reset the scroll position of a UITableView?

I would like to completely reset the scroll position of a UITableView, so that every time I open it, it is displaying the top-most items. In other words, I would like to scroll the table view to the ...
5
votes
4answers
13k views

What's a good bit of JS or JQuery for horizontally scrolling news ticker

I am looking for a little bit of JQuery or JS that allows me to produce a horizontally scrolling "news ticker" list. The produced HTML needs to be standards compliant as well. I have tried liScroll ...
4
votes
7answers
126 views

How is this jQuery done…?

Can anyone point me in the direction or recommend any tutorials that achieves what is on this site... http://www.fullstopinteractive.com/ The scroll to a point on the page along with the navigation ...
4
votes
1answer
91 views

Swing JTable: Event when row is visible, or when scrolled to the bottom?

I'm looking for a way to be informed when a JTable has scrolled such that a particular row becomes visible, or failing that, when the bottom of the table has scrolled into view. Ideally this should be ...
4
votes
1answer
152 views

Can't make jQuery UI element draggable?

I am having trouble with the draggable feature. Please see the page at the link below. Scroll in the window and look what the "draggable" element does. The move area is the border of the window. ...

1 2 3 4 5 32