scrollbar

Accessing scrollbar in a group component Flex 4

This is the setup. I have created a timeline with a playhead. When my playhead is dragged I would like the timeline to scroll with the drag. So far, the only way I can do this is by setting clipAndEnableScrolling to true. But in this case I lose the scrollbars(not to mention the impact on my view). So what I would like is to set this pr...

how to disable draggable div when child element scrollbar is being used

I have a jQuery draggable container div with a side scroll bar that should not be draggable when I am scrolling up and down. .infotext is the inner div that has the text, contained within #infobody which is set to overflow:auto. I need a way to negate the draggable function on the parent div when the child scrollbar is selected. Here ...

SWT Browser - disabled Vertical Scroll how do i hide it?

I have a SWT shell, with an SWT browser in it. on OSX it works fine, but when on Windows it insists on putting a disabled vertical scrollbar in the shell or browser (i don't know which!). Is there a way of forcing the widgets to hide their scroll bars? When i call getVerticalScrollBar() or the horizontal equivilant on either the shell o...

Can javascript detect when scrollbars are unavailable (i.e. on mobile browsers)?

I've got a javascript-based Scrolling Widget Thingy™. One of the things it does is create a fixed height div and gives it overflow: auto. Alas on mobile Safari (and other mobile browsers) overflow: auto; doesn't show a scrollbar. Any content below "the fold" can only be found by accident. Is there a way to detect this in javascript, wi...

div with scrollbar over select in IE6

Hi, please could you advise? I need to put a div over a select element in IE6. The approach I've chosen is to use iframes in div (jquery bgiframe plugin). Everything is nice except one: this div has a vertical scrollbar, and just this scrollbar is under the select although iframe is under the whole div (including its scrollbar). How cou...

Flex 4 Scrollbar Skin does not resize

Hello guys... I'm working on a Flex 4 application and I started customizing the interface with skins to give a whole new look. So, I've created two scrollbar skins in Flash Catalyst (one horizontal, one vertical). Its working great when I test the application through Catalyst so I took it and imported it on Flash Builder, copied the c...

Adding scroll bar to a custom ViewGroup ?

I've got the following node in my XML layout: <com.x.y.view.TagLayout android:id="@+id/TagLayout" android:layout_width="fill_parent" android:layout_height="170dip" /> TagLayout is a class that extends ViewGroup, and basically holds a bunch of buttons with text (a custom object that act as tags, but that's neither here or there). The...

MouseLeave event fires when moving over control's ScrollBar

I am reposting this question due to inability to solve the problem (original here). In the TreeView, ListBox, or it seems from my google searches anything with a ScrollBar, the ScrollBar is not considered a part of the control. I have a TreeView that I'm putting into a custom control, and it's Dock Fill. So there it acts as a custom Tr...

Position fixed and width 100% element covering vertical scrollbar in IE

I have a div with WIDTH 100% and position fixed on the top of the page. It covers the vertical scrollbar in IE when vertical scrolling is needed on the html. What can I do to avoid this (I can't change the position fixed bit)? Can I detect whether page need vertical scrolling onload/resize and change that static div's width using jQuer...

Adding a scrollbar to a firefox extension's sidebar

I'm trying to add a scrollbar to a firefox extension so that it displays when the window is too small. I'm having issues with having the scrollbar span the entire range from top to bottom of the sidebar and only having it displayed when the window is too small. One extension that has the functionality I would like is the sage extension...

Scrolling vertically grid content

Hello. I'm developing a Windows Phone application. I have a phone page with a big textblock and a picture inside on a stackpanel. Because the textblock is big the picture isn't visible. I set VerticalScrollBarVisibility="Visible" on stackpanel but I can't see the picture. How can I use a scrollbar to see the content bellow the textblo...

actionscript 3 ULscrollBar Issue!!!!

Hi Guys.. I am trying to create a scrollBar for my MC which contains several mc horizontally. I wanted to apply ULscrollBar for my MC container so I can scroll for move small MC but I couldn't get it to work...I would appreciate if someone can help me about it. (there is no scroll head for me to drag...) Thanks... cont=new videoC...

How to enable scrollbar / scrolling on a WPF Datagrid

I've got a DataGrid control that's within a Grid layout container, and I can't seem to get the auto-scroll on the datagrid itself to work. I can wrap the datagrid around a ScrollViewer and thus adding the scroll bar, but the auto scrolling doesn't work. So right now when new entries are added to the datagrid, the datagrid just expands ve...

AS3 How to create scrollBar for Movieclip in actionscript 3

Hi guys.. I am trying to scroll a movieclip with a scroll bar....I have tried ULscrollBar but it ends up only works for text... Are there anyway to scroll MC by using only AS3 in flex environment...? Thanks. ...

Maintain horizontal and vertical ScrollPosition on Postback in ASP.NET

Hi Guys, The coding is in ASP.NET C#. I have a gridview, with say 1000 records and I am inline editing one of the rows. On Clicking Update, I would like my Grid to be on the exact x y position it was on before the postback happened. If you are thinking along the lines of using the Page directive, MaintainScrollPositionOnPostback="true...

Scrolling panel using horizontal scroll bar.

How can I apply a horizontal scroll bar to a Panel? I'm working on 2d tiled map editor and I'm using a Panel to hold the contents. When my map is bigger than my panel it just goes off and becomes invisible, would it be possible to apply custom scroll bars? Edit: Its for Windows forms application project. ...

unwanted horizontal scroll bar in fluid layout

Hi, http://www.twofivefivefive.com/asctest/ I am helping a friend with this site, and it is a fluid, % based design (which I have no experience working with). For some reason, I am getting a horizontal scroll bar, that scrolls into blank space on the right side. I haven't the faintest clue what is causing the page to be wider than it ...

WPF/XAML Custom ScrollViewer ScrollBar w/o Custom ScrollBar in Inner Controls (like TextBox)

Hello, and thank you for looking into my question. I would like to customize the ScrollBar in my ScrollViewer. No problem. But wait. When I do that, it also changes the ScrollBar of the inner controls. I don't want to impact those ScrollBars. How do I specify the correct scope? Here's the XAML that almost works: <Page xmlns="http://s...

How to remove scrollbars in console windows C++

I have been checking out some Rogue like games (Larn, Rogue, etc) that are written in C and C++, and I have noticed that they do not have the scrollbars to the right of the console window. How can I accomplish this same feature? ...

Scrolling to an item in a list

I have a list of elements I would like to be able to have brought into focus when the user is selecting items. I've tried calling .focus() with Jquery on these objects to no avail. Is there anything I'm missing? :) EDIT: I have a list (ul) of elements. I shift click on a starting item and and press the arrow keys to continue selecting. ...