Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
5k views

Android horizontal scroll list

I want horizontal scroll like Gallery. Im not using Gallery because its center locked. Can some one here would help me out with this So I can have horizontal scrolling list? I think best example of ...
2
votes
4answers
194 views

Horizontal ListView like Google Catalogs

how do I make a horizontal list view like the one seen in Google Catalogs? The large main area is a viewpager, but the bottom row is a horizontal scrollview with a list of items that are clickable. ...
2
votes
3answers
779 views

Horizontal Nested List using CSS

I'm trying to create a horizontal list from a nested list markup, as an example I have the current markup: <ul> <li class="alone">List Item 1</li> <li class="alone">List Item ...
2
votes
4answers
815 views

CSS: Horizontal UL where LI contains a TABLE. Possible?

I am trying to fix a horrid nested table layout for a site. The page will have a variable number of elements that leverage Google charts. Instead of complex spaghetti code that tries to lay things out ...
2
votes
5answers
5k views

How to display inline several <li> with 100% width?

I have the following html: <div id="container"> <ul> <li>element 1</li> <li>element 2</li> </ul> </div> applied with a css as follows: ...
2
votes
3answers
6k views

Flex - Change position of scrollbar to the top of a HorizontalList component

By default, the Horizontal ScrollBar of a HorizontalList component will be at the bottom. Is there a way to reposition it so it is at the top? Just for clarity, I do not mean moving the scroll ...
1
vote
2answers
46 views

Wrap each item in horizontal list using CSS

I've got a horizontal list with long items that I want to wrap. The list wraps fine if one list item is really long or if all the list items are really short. However, if two list items are both ...
1
vote
0answers
131 views

Android, Scroll arrow image in listview using HorizontalListView

I generated a listview (from array) using HorizontalListView, using a custom ArrayAdapter. It works fine, the problem is: I want to display an arrow image at the right and the left of the list to ...
1
vote
1answer
921 views

WPF/C#: How to add images from a horizontal listbox/listview by (file paths coming from a database table)

Is there are way to customize the listbox/listview horizontally and add items (images) coming from a database which has a record of image file paths?
1
vote
1answer
752 views

Flex - Remove horizontallist rollover color

I'd like to remove the rollovercolor of a horizontallist (my component has a background image). I've tried using a css style sheet by setting the "roll-over-color" property to "transparent"... But I ...
1
vote
1answer
1k views

Horizontallist variable width

i want to populate a horizontalList component from a xml file, the width value will be inside the xml file as well with all the data. actually i have this code: <mx:Model id="epg" ...
1
vote
4answers
228 views

How to make a HTML list appear horizontally instead of vertically using CSS only?

I need this because I want to make a menu (which is made from a HTML list) appear horizontally. *I prefer not to use absolute positioning since it might become messy when I start changing the layout ...
1
vote
4answers
761 views

Centering item renderers in a HorizontalList

I am trying to center itemRenderers in a horizontal list if the number of items in the list is less than the maximum visible number. Has anyone found a good way to do this? See an illustration of ...
0
votes
0answers
72 views

Android: two listviews, slow scrolling and listener responce

I am using two listView, the first one is a HorizontalListView (a custome listview) containing buttons and the second is a normal Listview containing some textViews and Images, i am using an AsyncTask ...
0
votes
1answer
41 views

UL not staying in one single line

I tried what this said: How to style the UL list to a single line display: inline; and didn't work! ----------- My Code ----------- CSS: *{ margin:0; padding:0; } ul{ list-style:none; } ...
0
votes
2answers
341 views

How to create a horizontal scrollable list?

I am wondering what the best approach is for creating a horizontal list with custom buttons. I read there is no native control for that: I am considering a UIView with a scroll view inside. On this ...
0
votes
4answers
1k views

CSS: Horizontal, comma-separated list with fixed <li> width

I would like to achieve the following structure: [gfhtfg..., kgjrfg..., asd, mrhgf, ] ^-------^ ^-------^ ^-------^ ^-------^ X X X X (X = a fixed length) ...
0
votes
1answer
156 views

Horizontallist control with XML dataprovider

I'm using a HorizontalList control with an XML file as a data provider. This is how the XML looks: <data> <zone name="Europe"> . . . </zone> ...
0
votes
1answer
401 views

Flex - Saving a new order of items of a HorizontalList through AMF

I've been working with the drag-and-drop of items inside an Horizontal List in Flex. It works fine, but now I need to save the new order through AMF in my database. I'm pretty sure it's quite easy, ...
0
votes
1answer
925 views

HTML Horizontal Ordered Lists with Numbering

I'm using an ordered list in order to get numbering, which works perfectly fine when the list is vertical. However, once I make it horizontal, the numbering disappears. The display attribute in the ...
0
votes
1answer
762 views

resizing item renderer when horizontalList resizes

I have a HorizontalList that is resized at runtime. The problem is that the items are not adjusting their height to the height of the HorizontalList. I use an item renderer (vBox) which has its height ...
0
votes
1answer
400 views

How can I load something from MySQL to an HorizontalList in Flex

How can I load text from MySQL to an HorizontalList in Flex3 ? I am using : <mx:ControlBar x="10" y="40" width="460" height="230"> <mx:HorizontalList id="dataGrid" ...