Tagged Questions
0
votes
0answers
65 views
Flex 3: List item selection color alpha
Is it possible to set alpha for a list item selection color (based on Flex 3)?
Thanks in advance!
0
votes
2answers
161 views
Flex 3: Highlight (changing background) of some characters within a string
I'm implementing a contacts list in Flex 3, and I right now I already implemented the list filtering to display the results. However, I would like to highlight the matching characters in the results, ...
0
votes
2answers
311 views
Flex 3: List with custom item renderer with “zebra striping” style
I want to apply a "zebra striping" style to my mx:List, the only way to do this is through code right?
In that case how can I loop the items (in fact, items or item renderers?) to apply the individual ...
0
votes
0answers
81 views
Question about custom module itemrenderers [closed]
I'm using a horizontalList component with a dataprovider of projectsAC and an itemRenderer of "modules.project".
I'm having a tough time because projects can overlap on dates (in this case, the Y of ...
0
votes
0answers
138 views
flex - overwrite list item drop zoom in animation
I've implemented a simple item list using drag and and drop.
When an Item is selected and dropped into a list - the default behavior is a "zoom in" animation. i would the item to just be set in its ...
0
votes
1answer
203 views
How do you scroll an mx:List by tabbing through items?
I'm sure someone must have accomplished this before, but I couldn't find any article on this.
How can we scroll a List control (with uses an itemrenderer) to the next item, when the user tabs from ...
1
vote
3answers
712 views
How can I change create gaps between tiles in a Flex Tile list or the width of a hover image so you can see the background image inbetween items
I have created a tile list with custom item renderer and in terms of functionality it works as it should. I reduced the width and height of the item renderer to 95% which then shows the tile lists ...
1
vote
3answers
359 views
How can i create a Flex list component with the 0 rowIndex starting at the bottom instate of the top
Does anybody know how i can create a stacking list component (just like photoshop) where the first row starts at the bottom and the second on above the bottom and so on.
Normally the list component ...
0
votes
1answer
182 views
Problem setting default selection on a Flex 3 List
Hi I've got a list and the selectedIndex doesn't seem to have any effect. Is the alternatingItemColors causing a problem?
I've got a panel with this list and a few radio buttons. I've set the ...
0
votes
2answers
287 views
programmatically skinng the roll over idicator of a flex list component
Does anybody know how to add custom rolloveridicatorskins to a flex 3 list component?
it doesn't have the rolloveridicatorskin in the css.
0
votes
2answers
751 views
How to set variable size for List control item in Flex?
The following code display a list of comments using List control. The item height set to a fixed value (150), so it seems working: if the content is too long, the scrollbar shows...
However, what I ...
0
votes
1answer
51 views
List Component that acts as if control was permanently pressed
I have a list control and i want the user to be able to select many items at a time. Thus I want it to act that if the control key is pressed while he is clicking. Eg if he clicks on a selected row it ...
1
vote
2answers
633 views
Adding UIComponent to both Canvas and Tree in Flex 3
I currently am trying to add a custom class which subclasses UIComponent to both a tree and a canvas, but when I try to re-order the tree by dragging I get this error:
TypeError: Error #1010: A term ...
0
votes
2answers
293 views
Flex: List displaying wrong until scrolled
I have a List, that is not showing any items until you scroll, then the items show up. Does anyone know how to fix this? I tried calling list.invalidateDisplayList(); and list.invalidateList(); But ...
1
vote
2answers
4k views
Flex 3 - how to select an item in the list as default?
how to select an item in the list as default
default selected item say of index 0
I tried stuff like this --
listid.selectedIndex = somevalueinmyprogram - 1; // 0
but when i debug this i get
...