scrolling

CSS Problem with Overflow width div Part 2

Hi everyone, Related to this post stackoverflow.com/questions/1736910/css-problem-with-overflow-with-div The awser helped me ie: adding display: inline; i wanted to add some div into the div ".div-image" for title and description: i found that it worked if i replace display: inline; with display: inline-block; but guess what, it do...

Flex: Make advanced data grid height of rows?

I have an ADG along with some other components in a VBox. The number of rows of items in the ADG is variable. I want the height of the ADG to be however tall it needs to be to show all the rows without scrolling. This is because I want the containing VBox to handle all the scrolling. The reason being, is because sometimes there is a ho...

How can I make my text stay in side of my JQuery slider

Hi, I have tried everything as far as widths and margins. The problem is I have a background image and when I use a width that makes the text stay inside the slider during scroll, it cuts off my image. That being said, I have everything set to what I want, except the text issue: here is the CSS: #wrapper { width: 550px; margin:0...

how to detect Android ListView Scrolling stopped?

Hi all, I'm trying to do something after scrolling stopped.So, I tried using OnScrollListener#onScrollStateChanged(SCROLL_STATE_IDLE) to detect when the scrolling stopped(either TOUCH_SCROLL or FLING)(at 1.5 it's runs as i expect). But when it runs on 2.0, onScrollStateChanged can't received the event after releasing the finger.Is ther...

Horizontal scrolling div with images won't display inline

I'm trying to create a div with a fixed size that contains images only. I'd like them to be the height of the div, display inline, and scroll through them horizontally. I'm having trouble making this work. I'd to do this as simply as possible. What am I missing? ...

Change mouse scroll to not zoom in Expression Blend?

Is there a way to change the mouse wheel behavour in Expression Blend? I want it to scroll instead of zoom. ...

JavaScript: Highlight a row when I scroll up/down

On my web page, I a table inside a DIV that is scrollable. When I scroll down, I want to highlight the center most viewable row in my table. How would I do that? I found the following script that is close to what I desire --> www.rgagnon.com/jsdetails/js-0093.html But this works only on the MouseOver event. I want this to work on not...

How do I make this menu collapse on page load?

This is my code. How can I make this menu always be popped out, not just when you click on '#projects'? Change the .click function to what? $(document).ready(function($) { $.fn.longDropdown = function(options) { var opts = $.extend({}, $.fn.longDropdown.defaults, options); // Weird bug to show the correct number of items opts.vis...

Creative way to display tables with 35 columns

I have a form where users are entering 35 different fields. I have a Content Management System where I want to display the results of an order on the form. I've thought about adding a horizontal scrollbar inside the table, or limiting the table to the 10 most important columns and then making it so the administrator has to click on an...

Scrolling problem with a WebBrowser control contained in a Panel control

I have a .Net Panel control that contains a single child control that is a WebBrowser. I won't go into the reasons for me doing that, but it is related to printing out the control. The panel control has its AutoScroll property set to "true" and I am sizing the WebBrowser to fit its own content (by using the .Document.Body.ScrollRectangle...

Vertical Scrollbar in CListCtrl

I'm using a CListCtrl in Icon view, but it scrolls horizontally: 1 3 5 7 --> 2 4 6 8 --> I'd rather it scroll horizontally: 1 2 3 4 5 6 | | V V Is there a way to do this? ...

Algorithm to implement kinetic scrolling

What are the good algorithms to apply to kinetic scrolling implementation? The feature would be tested on custom UI list. While I am targeting mobile devices (those that do not have this feature built-in), any algorithm or code example from different programming field may also suit. Thank you. ...

jQuery: snapped scrolling - possible?

hi all, i'm having a scrollable table with fixed header. would it be possible to have "snapped scrolling" on the scrollbar - which means that the table rows won't scroll pixel by pixel but snap responding to its row height, for better viewing. thx ...

Flex: Scrolling in datagrids

Hi! I have 2 questions about flex datagrids: How can I scroll it automatically to the bottom when new portion of data arrived to it (e.g. I added new items) Strange, but seems it doesn't scroll when I use scrolling wheel, is there any trick about it (especially for mac Users) Thanks in advance Some changes: public function scro...

Scroll stackLayout view in iPhone web application

Hi, I'm developing a web application for the iPhone using Dashcode. I would like to scroll a view of the stackLayout since the div exeeds the screen of the iPhone. "overflow: scroll" doesn't work unfortunately Any ideas? Thanks a lot ...

C#, RichTextBox: how to implement scrolling line by line?

Hi! I have a RichTextBox in my C#-application. Both horizontal and vertical scrolling are enabled. Current behavior: When I reach the last line of visible text area, horisontal scrolling comes to place. But scrolling is being made by pixels, not by line. So I can't see the text I'm typing becase the line itself is partly (or completely...

C#: Synchronize Scroll Position of two RichTextBoxes?

In my application's form, I have two RichTextBox objects. They will both always have the same number of lines of text. I would like to "synchronize" the vertical scrolling between these two, so that when the user changes the vertical scroll position on one, the other scrolls the same amount. How might I go about doing this? ...

Is there an event that fires on changes to scrollHeight or scrollWidth in jQuery?

I'm using JQuery to design an application where the user can drag elements inside of a div that automatically adds scrollbars and expands the scrollHeight/scrollWidth as needed. I need to fire off an even when the scrollHeight and scrollWidth of the container div are changed. No, don't want to use the scroll event because 1) scroll doe...

Automatically scroll when mouse is idle

I need to find a way to randomly scroll horizontally and vertically, plus or minus a set number of pixels per second in each dimension, when the mouse has been idle for a set amount of time. Any ideas on how to achieve this? Thanks in advance, Robert ...

Maintain scroll position on updating the ItemSource of a silverlight datagrid

I'm using a DataGrid in my silverlight application to display some data that's refreshed on a timer. My problem is that when this happens the vertical scrollbar in the grid resets to the top, whereas I want it to stay in the same position. Does anyone know how I can make this happen? I've tried overriding the ItemsSource property on th...