Tagged Questions
0
votes
0answers
84 views
How to get text vaule of a DateField before it is commited in Flex
I am trying to add functionality to be able to enter numbers into a DateField without the slashes.
On FocusOut of the DateField I get the text and format it and set the text back and everything works ...
0
votes
0answers
114 views
Flex DataGrid display data that takes up multiple rows
For a project I'm working on, I have a requirement to display data for certain events that cover differing time periods. So, 1 event might be from period 1 to 4, another might be from 2 to 3, and they ...
1
vote
1answer
315 views
I want to put a button inside datagrid's column tag in flex 3
I need to put a button in one of the columns of datagrid tag and the column's value should appear on the buttons label. Any help will be highly appreciated
0
votes
3answers
37 views
The property still has the old value in validateProperties
I have a custom renderer (inherits from AdvancedDataGridItemRenderer), and I'm overriding validateProperties and using the value of the width property, but I'm getting the old value every time! Isn't ...
0
votes
2answers
58 views
How to get the effect of showDataTips on a custom renderer?
I have an AdvancedDataGrid with a custom renderer on one of the columns (that extends AdvancedDataGridItemRenderer). I'm interested in displaying the full text in the column as a tooltip when it's too ...
0
votes
1answer
229 views
Item renderer - Rendering a row in flex
I have got a datagrid with three columns. I have applied two different renderers on different columns (Say Renderer A at column 1 and Renderer B at column 3).
Now in set Data() of B (column three's ...
0
votes
0answers
316 views
Dynamically display datagrid column value using ItemRenderer
I’m having some issues figuring out how to display the column value using an item renderer for a dynamically generated datagrid column. I'm assigning an itemrenderer as part of the column definition ...
0
votes
1answer
182 views
flex3: AdvancedDataGrid with many LinkButton itemrenderers getting performance issue
I am facing loading time taking - performance issue due to many linkbuttons in the datagrid.
Suppose, In my page, there are 4 pod(panel) objects, and each containing ADGrid.
As of now, for some ...
0
votes
0answers
193 views
Flex: How to use fade effect on custom ItemRenderer of a List?
Inside my 3.6 Flex module, I am using a List with a custom ItemRenderer:
<mx:List id="chatsList" y="0" left="2" right="6"
width="100%" height="100%" dataProvider="{chatsArrayCollection}"
...
0
votes
2answers
313 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
2answers
1k views
ActionScript Item Renderer in DataGrid
I am using this example from blog.flexexamples.com.
I have a datagrid and trying to dynamically add button to one of datagrid column. But I want this Button as an ItemRenderer to be written in ...
0
votes
1answer
118 views
Flex - Superscript of an icon/image
I am working on ActionScript 3.0 and came across a doubt. We can have 2 images in a single cell of datagrid via itemRenderer property.
I want to show an icon as a superscript to some text present in ...
0
votes
4answers
1k views
data vs listData in Flex itemRenderer
I was wondering what the difference between data and listData in itemRenderers in flex. I have worked with data in all of my itemRenderers.
Basically I want to know when to use which, where each ...
2
votes
3answers
1k 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 ...
0
votes
0answers
82 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
2answers
540 views
How to reach elements of an inline component in flex?
I have a problem with inline components. I want to reach an inline component from another one.. From the first component, i want to change "enable" value of the linkbutton named "Add" which is in ...
1
vote
4answers
937 views
Flex's itemrenderer problem when sorting on datagrid
Please follow my explanation here :
I have a datagrid which holds a dataprovider that has 3 columns
one of those 3 columns is button itemrenderer, others are integer
I put 4 row into the datagrid
I ...
1
vote
2answers
966 views
Conditionally change icons in datagrid rows using item click
I have to designed a datagrid, in first column i have to use closed lock icon. when i click a row in a datagrid the selected rows' icon should change as opened lock icon. how i can achive this task in ...
0
votes
2answers
782 views
Show alternate row colors using itemRenderers inside a List
I have a List with an itemRenderer for displaying some data. Is there anyway i can set different styles or background colors for alternate rows?
My List is as follows :
<mx:List id="myList" ...
0
votes
1answer
204 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
715 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 ...
0
votes
1answer
519 views
how to validate textinput within itemrenderer?
I have textinput within list itemrenderer like
main.mxml
<s:List
id="videoAttachmentsList"
...
1
vote
1answer
3k views
Weird Behaviour-CheckBoxes as ItemRenderer within Flex DataGrid - FLEX 3
I'm having this weird behaviour in a datagridColumn which I've customized to have its cells rendered as checkBoxes rather than the dafault itemRenderer (i.e. strings). The relevant code is as ...
1
vote
1answer
530 views
Cannot access constant through itemRenderer using parentDocument
I have an itemRenderer inside a dataGrid, and I am able to access variables on the mxml file (in a *.as script file referenced from the mxml) using parentDocument. However, I am unable to access a ...
1
vote
2answers
780 views
Problem getting tooltip to refresh properly on an itemrenderer in Flex
I'm having the following problem.
I have an ArrayCollection that's acting as the data provider for a tilelist (called favoriteLinksList)
I use an itemRenderer called FavoriteItem as the tilelist's ...
1
vote
3answers
1k views
Displaying List of flex progressbar using itemrenderer
I want to create a list of progress bars and update the list accordingly.
I have group data in an Array as
<mx:Array id="arr">
<mx:Object label="Group One" min="0" max="200" ...
1
vote
1answer
436 views
flex tree node types
i have a tree of nodes that i dont want some type of nodes to appear in the tree, i can check the data on tree item renderer for each specific node type, so i have one type that i dont want it to be ...
2
votes
5answers
11k views
Flex 3: How do I get the DataGridColumn's dataField in its ItemRenderer?
I'm trying to reach the dataField of a DataGridColumn in the itemRenderer. Below is the dataGrid:
<mx:Script>
<![CDATA[
[Bindable] public var weeksOfMoth:ArrayCollection = new ...
0
votes
1answer
868 views
PopUpButton with TileList and custom renderer
I have prepared a simple test case for a PopUpButton opening a TileList with black and red entries and it mostly works, but has 2 annoyances.
I've searched a lot, tried several variants (added ...
0
votes
2answers
754 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
558 views
How do I access the dataGridColumn from it's itemRenderer?
I am using a custom componenet based off of text as an itemRenderer for a dataGrid that is displaying an XMLList. I want to be able to re-use this itemRenderer for multiple columns, how do I access ...
3
votes
1answer
571 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 ...
0
votes
1answer
565 views
How to load flex modules as list itemrenderers with moduleloader tag?
I have a list compontent with an extrunal itemrenderer. My itemrender is a module that I would like to load in at runtime.
I have used the moduleloader tag but it doesn't display anthing. If i don't ...
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 ...
8
votes
2answers
41k 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 ...
0
votes
2answers
1k views
passing value object to itemRenderer
how can access/pass a value object in a custom itemrenderer? The item renderer represents a field in my datagrid and i want to be able access properties from my VO.
Thanks
1
vote
3answers
5k views
Creating Dynamically Flex Custom ItemRender (Constructor)
am creating some Advanced Datagrid with actionscript.
I have created an actionscript class where I extend the VBox object:
package core
{
import mx.containers.VBox;
import mx.controls.TextInput;
...
0
votes
1answer
958 views
DataGridColumn with ItemRenderer, how to set dataProvider properly?
I'm building a DataGrid to display data similar to the following XML:
<foo>
<entities>
<entity>
<name>Jim</name>
<trend>
...
5
votes
9answers
10k views
Flex ItemRenderer prevents use of tabbing between text inputs
I have a custom ItemRenderer that displays 5 text inputs in each of 3 panels:
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox
xmlns:mx="http://www.adobe.com/2006/mxml"
height="300"
...
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 ...
4
votes
3answers
4k views
How do I stop a datagrid's first-row itemRenderer from instantiating/adding/initializing/etc twice?
In a Flex DataGrid's first row, the itemRenderer will initialize twice. Tracing the results reveals that the flex framework is possibly creating two instances of the first row's itemRenderer. In a ...
0
votes
3answers
2k views
flex 3 and itemRenderers
i have a datagrid and for one of the columns im using an item renderer to display content. Im wondering is it possible to access the dataprovider content of the datagrid inside a script block in the ...
1
vote
2answers
6k views
Fit Flex datagrid to data
I have rows of text data that can vary between 0 and 100, and all need to be visible on the screen at one time. The default behavior is fine for the grid until the rows * rowHeight > gridHeight.
...

