The itemrenderer tag has no wiki summary.
1
vote
1answer
2k views
Flex 4: mx|tree - how can i disable items selection?
I want to create a tree that it's child nodes contain specific flex components that I created. I override the default ItemRenderer to achieve this.
In my ItemRenderer i have:
two states: item and ...
8
votes
2answers
35k views
Flex DataGrid with ComboBox itemRenderer
I'm going spare trying to figure out the "correct" way to embed a ComboBox inside a Flex (3.4) DataGrid. By Rights (e.g. according to this page ...
11
votes
6answers
15k views
Flex - Sending a parameter to a custom ItemRenderer?
What I am trying to accomplish to to get financial data in my Flex Datagrid to be color-coded--green if it's positive; red if it's negative. This would be fairly straightforward if the column I want ...
6
votes
5answers
10k views
Flex custom item renderer for the displayed item in the combobox
I am using a custom item renderer in a combobox to display a custom drawing instead of the default text label.
This works fine for the dropdown list but the displayed item ( when the list is closed) ...
6
votes
3answers
2k views
Flex: Caching images in list item renderer?
I have a List and the item renderer displays an image. Whenever you scroll the list, and the item renderer refreshes, it redownloads the image. Causing there to always be a delay. Is there some way of ...
3
votes
1answer
495 views
Flex3 Combobox doesn't display itemRenderer when closed
I have a combobox with a custom itemRenderer. The ItemRenderer displays some images and a label.
When the combobox opens, the items in the dropdown list display perfectly, but when its closed, the ...
2
votes
3answers
450 views
Display List ItemRenderer Index in Flex3
Is there a direct way to get the item index of the data inside an itemRenderer? I need to display the item number against each item. I am currently doing a workaround and won't allow reuse of my ...
2
votes
3answers
4k views
Disable roll-over color for List or DataGrid components
I want to get rid of the typical Flex roll-over color in list-based components, and to display my own style of roll-over rendering.
Setting useRollOver to 'false' is not an option, since disabling ...
1
vote
4answers
1k views
Flex prevent item renderer recycling?
Is there a way to prevent recycling of item rendered with Spark components on Flex 4.5 ?
It might sound ridiculous, but actually this would do the trick until i understand a bit more the rendering ...
1
vote
4answers
9k views
Flex3: Custom Item Renderer does not listen to events dispatched by parent
I have a List with a custom ItemRenderer. The ItemRenderer contains a Checkbox and a Label.
The component with the List has a 'select all' checkbox.
When the 'select all' checkbox is checked, it ...
0
votes
3answers
2k views
flex 4 list ItemRenderer: how can i have different itemrenderers for different rows?
I'm creating a list of scores for a game. now most of the list i need to have the same ItemRenderer. but in one specific row of the list where the user who's playing is listed, it should show ...
0
votes
3answers
1k views
Custom Itemrender in Datagrid with Datatip
I have a datagrid with one datagridcolumn in it. Without a custom itemrenderer I can use a datatipfunction for showing a custom datatip but now I want to have a custom item render for colouring the ...
0
votes
3answers
3k views
How flex itemRenderer works ? (their life cycle)
By works, i mean : how item renderer are instanciate , call , destroy... what is theire life cycle ?
I had some display bugs, and this link open my mind to the problem
...
2
votes
2answers
3k views
Force all item renderers to commitProperties?
I have an item renderer that checks an external source for display information. If that information changes, I want to force all item renderer instances to check it.
What's the best way for force all ...
1
vote
1answer
289 views
How to trigger itemRendererFunction to be called again when data change in Flex
I have a list that uses a itemRendererFunction to get custom item renderers. Is there a way to only reevaluate one item in the list and get different item renderer?
imagine code like this :
there ...
1
vote
1answer
386 views
Dynamic ItemRenderer for Flex Datagrid
I have DataGrid with Dynamic Columns. The columns will contain ItemRendrer. I'm not familiar with dynamically adding ItemRenderer.
My code is:
var column:DataGridColumn = new DataGridColumn();
...
1
vote
1answer
581 views
Flex4: Fade in/out items in list when filtering
In Flex 4 I have a list where every product in it is rendered through an ItemRenderer. Now, when I filter the list I want to fadeout the products that are removed. I can't add the fadeout effect to ...
1
vote
2answers
846 views
How to use out-of-datagrid scope variable inside an ItemRenderer?
I'm binding an array of items to a data grid using ItemRenderer. I use the data variable to control the bindable data. I also have someComponentVariable that need be inserted into every row but its ...
0
votes
2answers
69 views
Get ItemRenderer for a particular cell - Flex DataGrid
I have a datagrid with 2 columns. I need to access the item renderer of the second column whenever column-1 value changes. i.e if value of column 1 is A- need to display text field in column2 and if ...
0
votes
1answer
42 views
Adobe Air: need help transferring data from sqlite to components
I have successfully received data from sqlite. I see that the data appear in trace function, however I am having a problem with displaying these data correctly. I think it has something to do with ...
0
votes
2answers
55 views
Adobe Flex ItemRenderer: Making Calculations
I have a database including a user's Date of Birth, but I want to display their age. I have a function which calculates the age but I cannot use it in the ItemRenderer and I don't know why. I don't ...
0
votes
2answers
1k views
ItemRenderer hieght (and height changes) not reflected in AdvancedDataGrid row
I have an AdvancedDataGrid with variable row height set to true.
I have written a cutsom item renderer based on the DataGroup spark component. Each row in the grid has multiple entities to display, ...
0
votes
2answers
126 views
Using button in AdvancedDataGrid [closed]
Possible Duplicate:
Buttons in AdvancedDataGrid in Flex
i want data in an AdvancedDataGrid column to be displayed as buttons instead. That means the label of the button should display the ...
0
votes
2answers
127 views
how to set truncateToFit option to true in the Tree in flex
I am trying to customise the truncateToFit option in my Custom Tree. In order to do that i have to render a LABEL into my tree as the tree is not having the TruncateToFit property. I am begineer to ...
0
votes
0answers
58 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
103 views
Flex 3: Questions about list itemRenderers - Need items in separate boxes, not just columns
I'm importing some information via XML; below is an example of one set of information (for a "project"), although there can be up to 30-40 in the end application:
<phases>
<project>
...
0
votes
1answer
397 views
Get changed value of Item from ItemRenderer in List
I have a List with textInput as itemrenderer. Initially the list is loaded with data from a data provider. However since the items are rendered in textInputs, I have the ability to change the value of ...
0
votes
1answer
289 views
Get variable from ItemRenderer to Main Application
I have a List with TextInput as item renderer. I want to get the value entered in the TextInput (form the TextInputItemRenderer) and pass it the main application to do some checks(upon tapping enter ...
0
votes
1answer
153 views
add ItemRenderer on the fly on Component
I have a List which has TextInput as itemRenderers for all its items. Upon application launch the items are rendered in the TextInputs correctly. The data is being populated from an Array of Objects.
...
0
votes
1answer
270 views
How do I get list item selection working when using a png mask in an item renderer in a Flex 4.5 mobile app?
I'm creating a mobile app in which I need to show a calendar with months at the top. The months are part of a component that extends from SkinnableDataContainer (and has some custom ...
0
votes
1answer
310 views
how to validate textinput within itemrenderer?
I have textinput within list itemrenderer like
main.mxml
<s:List
id="videoAttachmentsList"
...
0
votes
2answers
518 views
Weird behavior of custom item renderer in Flex 4
I have a class defined like this:
public class Photo
{
public function Photo()
{
}
public var PhotoId:int;
public var Title :String;
public var ...
0
votes
1answer
2k views
How can I create a custom MXAdvancedDataGridItemRenderer in Flex4?
Well, I created one but it has a bunch of issues:
if I click in the rendered column I get an error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
...
0
votes
1answer
369 views
flex custom itemRenderer doesn't use the styles specified
I have a custom item renderer which I use for my DataGrid. The DataGrid has specified selectionColor, rollOverColor and themeColor. The Problem is that the custom item renderer, does ignore those ...
0
votes
2answers
256 views
Datagrid selects the wrong custom cell in my datagrid
I am working on a problem since a week soon, but I still couldn't make it work as expected. I have a DataGrid which has HBox with a CheckBox an a Label as itemRenderer (see Code below). When I tap in ...
0
votes
2answers
1k views
Weird ItemRenderer behavior
I have a really odd issue with an ItemRenderer. I have a main.mxml container with a ViewStack. When a user logs in, the initial view contains an AdvancedDataGrid--containing some data and the ...