Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
21k views

JavaScript: Scroll Position of div with “overflow: auto”

Given this HTML snippet: <div id="box" style="overflow:auto; width:200px; height:200px; border:1px solid black;"> ...
6
votes
8answers
4k views

How do I maintain scroll position in MVC?

Im working on a project in MVC and have enjoyed learning about it. There are a few growing pains but once you figure them out it's not bad. One thing that is really simple in the WebForms world is ...
4
votes
7answers
25k views

Reset scroll position after Async postback - ASP.NET

What is the best way to reset the scroll position to the top of page after the an asynchronous postback? The asynchronous postback is initiated from a ASP.NET GridView CommandField column and the ...
1
vote
2answers
130 views

What is causing ListView to maintain its scroll-position after orientation change?

I have an Activity containing a ListView. I populate the list view using a SimpleCursorAdapter. When I run the app, I can manually scroll down in the ListView (e.g. to the 10th item). Then when I ...
1
vote
1answer
776 views

A way to keep DataGrid in same scroll position after update?

I have a custom <mx:DataGrid /> that is updated with data from a ColdFusion server every 60 seconds. I've noticed that every time the DataGrid updates and redraws the scroll position is reset to ...
1
vote
2answers
2k views

Problem saving WebView scroll position during orientation change in Android 2.1

I have a problem preserving the current scroll position of content loaded in Android's WebView control during orientation changes. The issue currently exist only in Android 2.1 and Android 2.1 Update ...
0
votes
1answer
47 views

.lockToggle( ) jQuery

I am trying to use this script to freeze scrolling when an 'lightbox-style' image is opened. There's probably just a small error in the script but can't figure it out jQuery.fn.lockToggle = function ...
0
votes
0answers
80 views

get scrollposition in Javascript, ie and chrome jump after delay to scrollposition

I want to get the scoll position of the document via javascript/jquery. The problem is not how to get the position, but much more some odd behaviour in ie/chrome: After the page has been loaded and ...
0
votes
4answers
207 views

Maintain scroll position for a div based on scroll bar position

I've got my code written here. What I'm trying to do is, detect if the scroll bar is at the bottom of the window, and if it is, append the new data into the div, then scroll back down to the bottom. ...