Questions tagged [scrollable]

A scrollable control affords the user the ability to slide text, images or video across a monitor or display, usually to conserve screen real estate.

577 questions
13
votes
3 answers

How can I get my ListView to scroll?

I have a quite complex View build-up, and as a part of that, I have a ListView inside a LinearLayout within a ScrollView (and quite a lot more components, but they do not matter in this issue). Now the whole activity scrolls nicely as it should, but…
ThaMe90
  • 4,196
  • 5
  • 39
  • 64
13
votes
3 answers

RelativeLayout Scrollable

I have tried many times to aligh the elements in my RelativeLayout but I dont get the result I expected that is: I'd like to align the first button to top right and then I have multiple Textview and I want all of them Scrollable, but when I insert…
Davis
  • 215
  • 1
  • 4
  • 11
12
votes
3 answers

Why is my page not scrollable?

So I have made a few pages that use the following css code: html { overflow-y: scroll; } ul.navbar { list-style-type: none; position: fixed; top: 00px; left: 00px; width: 200px; height: 700px; …
HansStam
  • 509
  • 2
  • 9
  • 22
11
votes
1 answer

JQuery Mobile scrollable list inside position:fixed element? (Sencha Touch behavior)

A typical use case would be a page with two columns: The standard behavior in JQuery Mobile is the content scrolls together with page. Is it possible to build an app with JQM using a different paradigm - a fixed viewport with scrollable content?
Vitaly
  • 4,358
  • 7
  • 47
  • 59
11
votes
4 answers

How to make scrollable DIV with scrollbar outside div like on facebook?

I would like to has a scrollable div but scrollbar should be on the right side of browser as default (but not on the right side of div). I've seen that on facebook (ceter div - contentArea is scrolled by right side browser scrollbar).
latata
  • 1,703
  • 5
  • 27
  • 57
11
votes
1 answer

Flutter Displaying a gridview inside a listview

i'm trying to display a search bar above a gridview (from a stream-builder). Id like the search bar to scroll up with the gridview. I've tried any number of ways to wrap the them in expanded/flexible widgets but I always end up with errors. Has…
Samh
  • 111
  • 1
  • 4
9
votes
3 answers

What's the use of HScroll/VScroll in ScrollableControl?

The ScrollableControl class has 2 protected boolean properties: HScroll and VScroll. As the document says: Gets or sets a value indicating whether the horizontal scroll bar is visible. And AutoScroll maintains the visibility of the scrollbars…
shingo
  • 18,436
  • 5
  • 23
  • 42
9
votes
4 answers

Two divs on top op each other, together exact height 100% + lower div scrollable

I'm stuck with this problem: I have a div (#container) which contains two divs. The height of the container should be exact 100%, regardless of the content of this div - not less not more. Inside this div I want two full-width divs on top of each…
ravax
  • 93
  • 1
  • 1
  • 5
8
votes
6 answers

How to make HTML text field readonly, but also scrollable?

I've got an HTML text field that I have made READONLY. Thing is though, that say the field is only a 100 pixels wide. And I have a sentence for example that doesn't get displayed in that 100 pixels. Since it's READONLY it't not scrollable. In other…
user818700
8
votes
1 answer

How to have a scrollable list inside a SliverToBoxAdapter

I am using the below SliverToBoxAdapter inside the CustomSrollView: SliverToBoxAdapter( child: Stack( children: [ Container( width: double.infinity, height: 50, …
nick.tdr
  • 4,627
  • 4
  • 28
  • 41
7
votes
4 answers

jQuery Tools Scrollable with Mousewheel - scroll ONE position and stop

I am using bind/unbind for mousewheel scrolling, based on this SO response: Jquery, unbinding mousewheel event, then rebinding it after actions are completed? I'm tunneling up the event tree from delta, to target only the X mousewheel values. All is…
wlangley
  • 73
  • 1
  • 1
  • 4
7
votes
5 answers

Flutter ListView with different widgets and list items

I'm not sure if I'm missing something. I'm playing around with Flutter and I want to build a (simple) view with some text widgets, buttons and other widgets (see picture below). These widgets should be followed by a list of items. The whole view…
user2148956
  • 179
  • 1
  • 1
  • 10
7
votes
1 answer

How to use ScrollableControl with AutoScroll set to false

I have a custom control that zooms on a custom drawn document canvas. I tried using AutoScroll but it was not giving satisfactory results. When I would set AutoScrollPosition and AutoScrollMinSize back to back (in any order) it would force a paint…
Trevor Elliott
  • 11,292
  • 11
  • 63
  • 102
6
votes
4 answers

How can I place new items under scrollview

I have a vertical scrollable layout with lots of items, working fine. I am trying to place a new linearlayout to the bottom of the screen that would NOT be part of the scrollable layout. That is, it would sit on the buttom (like an adview)…
laszlo
  • 101
  • 1
  • 4
6
votes
1 answer

how to drag from a scrollable div to a droppable and then drag again?

I have a scrollable list on the left of the page (overflow:auto) and several droppables on the right of the page. I found a workaround to allow an element to be dragged from the list to a container using a clone here but when the element is…
Trevor North
  • 2,286
  • 1
  • 16
  • 19
1
2
3
38 39