scrolling

UITableView delegate action when tableView is scrolled?

Hey! Is there a UITableView delegate-action that runs when the tableView is being scrolled? This is probably really easy, but I can't find it. Thank you :) ...

C# page scrolling like iPhone?

How do you make horizontal scrolling pages like the iPhone menu? It's for a touchscreen application and I want to make several pages with buttons. ...

Scrollbar flicker when calling EnableScrollBar

I'm using p/invoke to call EnableScrollBar from user32.dll (MSDN reference). I noticed that when the scrollbar is enabled, it seems to draw as though no theme is applied and then re-drawn with the theme applied. I've only tested with Windows 7 so far. Is there any way to stop this from happening? EDIT: Here's some code to show what hap...

HTML - Enable Scrolling within a Tables Cell

lets say i have a table cell with fixed width and height.... and i have data that exceeds the cell's fixed dimensions... <td width="500" height="300">lots of data that exceeds the dimensions</td> can i enable scrolling of this data within a cell.... if not than what is the solution.. i only have that 500 x 300 space ...

Why can't I programmatically scroll to a given row in a YUI ScrollingDataTable?

It appears the ScrollingDataTable scrollTo method is broken. As an alternative, I've tried scrollIntoView() and jQuery's scrollTop on the correct dom elements without luck. I've also tried YAHOO.util.Scroll and it doesn't work either. The datatable is in a div that has a vertical scrollbar. jQuery version: var scrollToThisRow = dataT...

Android Orientation problem

I am using Eclipse and developed an app that has 3 tabs using Android 1.5. The program works just fine. 1st problem--whenever the app is run, it change orientations, but does not show the scroll bars, thus allowing to scroll down(or up). Is this suppose to be happening? And how is it corrected? 2nd problem--if you are on say tab2, th...

How can I pause/restart a loop in objective-c

Would like to execute some code in a loop, but I want to pause it while a uiscrollview is scrolling. I've created a BOOL named isScrolling that is set to "YES" in the scrollViewDidScroll method and is set to "NO" in the scrollViewDidEndDecelerating method. I'd like to put the loop in the scrollViewDidEndDecelerating method, but have i...

Stop page scrolling from focus

I just installed a script to focus at my first input field, which is toward the footer. The focus works great, but the page scrolls to the bottom after loading. Can I still use the focus and stop the page from scrolling down to the first input field? http://www.ubspack.com/ ...

UITableView rotation issue

I have UIViewController with a UIView with UITableView inside. All works fine in Landscape mode but when the device is rotated to Portrait, bottom half of UITableView is not accesible (can't even select any row in the bottom half or make table scroll). All rows are displayed correctly. I am reframing and repositioning UIView and UITableV...

CSS - Lock scrollbars if overflowing

How do i TOTALLY prevent scrolling on my website even if there is overflow. I just don't want to hide the scrollbars because you usually can just use the mousewheel or page down anyway. I want them to be both hidden and locked. The problem is that i have this structure(with real css and html of course) <outerdiv height="100%"> <inner...

Scrollview doesn't swipe when it's too short to scroll

Hello everyone-- I'm pretty new to Android app development, and I've been playing around with swipe gestures using Android's SimpleOnGestureListener and a ViewFlipper. There are 3 children of the ViewFlipper, and each is a ScrollView. They're all dynamically populated when the Activity loads, and they don't change after that. The Scr...

Error when the scroller of the mx:Tree with custom renderers is scrolled

I have created a custom multiline item renderer for mx:Tree component. Important to mention that my item renderer has two UITextFields in it. Sometimes (depends of the input data) only one of UITextFields must be shown, so when second UITextField is not needed I hide it and recalculate the height of my item renderer. According to my test...

Bespin and Macbook scroll gestures

I don't know this because I'm on a Sony laptop, but does the Macbook two fingure scrolling work with bespin? The scrolling on my VAIO trackpad doesn't work with bespin. I know this is because the scrollbars are actually canvas drawn and javascript controlled. Sense I want to get a mac eventually, I would like to know if the two fingure s...

vb.net 2010 Usercontrol scrolling problem

Hi, I have a usercontrol that i am working with based on a project i downloaded that displays a calendar. I am trying to adapt it to show a week to view like in Outlook 2007 where the columns are the days and the rows are 30min segments. The problem i am having is that when i turn on autoscrolling and scroll down, it fails to correctl...

Scrollable resizable table with fixed header

I am looking for a HTML table where the header is fixed. I've found some solutions on the net and on Stackoverflow but none of seems to fit my needs. What I want is something like this: http://www.imaputz.com/cssStuff/bigFourVersion.html but when you resize the browser window the table should show a horizontal scrollbar. In the example...

How to make an auto-scrolling textbox in Qt ?

In one of my projects, I would like to have an auto-scrolling textbox. I'm not talking of a textbox that scrolls whenever someone adds a text line, but of something which is like a movie "closing credits" sequence. The textbox would be fullfiled with text and down-scroll slowly without any user action. Is there any existing widget tha...

How to scroll an inactive Tkinter ListBox?

I'm writing a Tkinter GUI in Python. It has an Entry for searching with a results ListBox below it. The ListBox also has a Scrollbar. How can I get scrolling with the mouse and arrow keys to work in the ListBox without switching focus away from the search field? IE I want the user to be able to type a search, scroll around, and keep typi...

Stop a tablelayoutpanel from scrolling

I have a C# .NET 3.0 project that uses a TableLayoutPanel containing several rows of controls. If I scroll down such that the top item is no longer visible, then remove a control in one column and replace it with a new control, the TableLayoutPanel scrolls back to the top. /// the panel in question private System.Windows.Forms.TableLayo...

Cocoa WebView scrollbars won't disappear

I load the webview and set allowsScrolling to NO, but webview still shows scroll bars... Banging your head on your computer hurts a lot more now that MacBooks have sharp metal edges. My code: - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { // Insert code here to initialize your application NSString *webF...

Find a Text and scroll into it with javascript

Hi everybody, I have a div that contains hundreds of lines. I want to create a function that allows me to find a text and scroll into it: function findAndScroll(text) So, I enter the wanted text in an input text, I click on the "Go" button that will trigger the "findAndScroll" function then I get scrolled to that text. Before coding...