scrolling

Iframe always showing scroll bars in IE7

Hi everyone, Having an annoying issue in IE7. I have a website where, at the bottom of every page theres an Iframe, and for the life of me I cannot get the scroll bars to hide. This is only in IE7, every other browser I have tested is fine. I have scrolling="no" and set overflow:hidden; still not working though. If anyones got anythi...

Recommendation for Windows.Forms Control that Supports Mouse Panning and Zooming

I found Customize a panel with Autoscroll property at http://www.codeproject.com/KB/miscctrl/CustomAutoScrollPanel.aspx that is wrapper around a Panel with AutoScroll = True. I like this control because it provides the "performScrollHorizontal" and "performScrollVertical" methods. Yet, it uses the Windows API functions instead of Scroll...

How to scroll the horizontal scrollbar in an iFrame from the parent frame?

Is there any cross browser way to scroll the horizontal scroll bar of an IFrame with super wide content with Javascript inside the parent frame. Also I need it to be attached to the mouse wheel event. Answer (please look at Marcel Korpel documentation bellow for details) var myIframe = document.getElementById("iframeWithWideContent")...

How to scroll to specific item using jQuery ?

I have a big table with vertical scroll bar. I would like to scroll to a specific line in this table using jQuery/Javascript. Should I look for plug-ins for this task, or there are built-in methods ? Here is a little example to play with. Thanks a lot ! ...

jQuery scroll on Mobile Safari

I'm developing and website and I need it to scroll to an anchor. It needs to be animated, so I decided to use jQuery for that. I tried this: function goToByScroll(id){ $('html,body').animate({scrollTop: $("#"+id).offset().top},'slow'); } It works perfectly on the desktop. On Mobile Safari it first goes to the top of the page, th...

CSS: Freeze table header and first column, *but only on certain axes*

Hello all, I have a variation on a common question, and I'll try to explain it as best I can. It may take some visualization on your part. I have an HTML table (in reality there are tables within tables within divs within tables -- I'm using the JSGantt plugin). I'd like for the table header to be frozen only when I scroll down on the y...

Can I stop the page from 'scrolling' back to the top when a user clicks on a tab (with Rails not Javascript)?

Ive built a webpage with 'tabs' using rails. When a user clicks a tab, a new page loads. I want to format it so the tabs are always in the same place on the page as a user clicks them. This happens as long as the user has not scrolled down on the page. If a user has scrolled down, clicking on the tab will refresh the page and it is no l...

How to scroll to specific position in BlackBerry web browser?

How to scroll down / up to the specific position by using JavaScript in BlackBerry web browser? Are properties like scrollOffset, scrollTop, scrollLeft etc. are supported? If not what code can be used? ...

scroll function jquery

I have a fixed header. i want to change the opacity when i scroll down and restore the opacity when i scroll up (at top of the page) i write down this simple script: $(window).scroll(function () { if(scrollY == 0){ $("#header").animate({ opacity: 1 }, 1000); } if(scrollY > 0){ $("#header").animate({ opacit...

Scroll immediately to row in table before view shows

A view with a table gets pushed onto the screen and I want it to scroll to a certain row in the table before the screen actually displays. I use this code within the final viewcontroller. NSIndexPath *scrollToPath = [NSIndexPath indexPathForRow:5 inSection:0]; [theTable scrollToRowAtIndexPath:scrollToPath atScrollPosition:UITableViewSc...

Scrolling down an awt.List

As from subject, I have an awt.List object. When I add something to the list I would like to scroll it down to show the last inserted object. For instance: myList.add("sometext"); myList.select(myList.getItemCount()-1); myList.showSelectedItem(); // Or something like that The documentation does not seem to list any method that does s...

Waiting until one event has happened before moving onto the next.

I currently have a scrolling anchor animation that also adds an "active" class to the anchor clicked. I am trying to fit the below function into the works as well, so say someone clicks "anchor 1", "anchor 1" will get an active class and the window will scroll to that location. But, after that has happened say the user manually begins sc...

Android RelativeLayout sometimes scrolls

Hi, I have made a layout with RelativeLayout. The layout includes quite a number of other elements, from a couple of TableLayouts to several ImageButtons... The RelativeLayout itself has the following parameters : <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layou...

How to implement JQuery easing into this window scroll movement function?

With this code I've been able to capture the mousewheel movement and apply it to the horizontal scroll bars instead of the vertical default. $('html').bind('mousewheel', function(event, delta) { window.parent.scrollBy(-120 * delta, 0); return false; }); Is there any way that I could add this jQuery easing animation to the scroll...

Usability implications of partial page scrolling

What are there the usability implications for a long list of items (f.e. facebook news stream) to use an internal scrolling (just the list panel) vs a full page scrolling. Edit1: Do you have references of analysis/guidelines discussing this issue? ...

jQuery window scroll and elements in position problem

I'm using the $(window).scroll(function() to set classes on the navigation of a site. When a section rolls into view the navigation class changes to 'current'. $(window).scroll(function() { var top = 0; top = $(window).scrollTop(); if(top < 1000){ $("a[href='#uk']").p...

tableview size when switching to landscape iphone

Hi, I have a UITableViewController with a table view that works perfectly when in portrait mode. the problem is when IO rotate the phone the tableView won't scroll all the way through it keeps bouncing back. (have switched bounce scrolling off) I suspect the tableview size is not correct but I can't fibure out why this works for multip...

Ipad/Iphone like scrolling

Have any of you seen like a javascript library that allows fluid div scrolling. I kind of want to do something like the scroll bars in google wave...but maybe less annoying. I happen to love them but it doesn't seem like they're getting that good of a review. ...

How to keep ComboBox from scrolling? C#

I have a ComboBox. It is critical that the user cannot scroll by accident and change the selected value. How can I prevent the ComboBox from changing the value and text when the use scrolls? Thanks. Visual Studio 2008 ...

Disable mouse scroll wheel in combobox VB.NET

Does anyone know of a way to disable the mouse scroll wheel when a control such as a combobox or listbox has focus? For my purposes, combobox is all I need the answer for. I have a combobox set to trigger a SQL query on SelectedIndexChanged, and accidentally scrolling the wheel while the combobox has focus causes about six SQL queries t...