Tagged Questions
1
vote
1answer
175 views
Flex MXML binding vs Actionscript binding
I'm hoping someone can explain what is going on under the hood when using MXML curly bindings.
For example, with itemrenderers:
If I bind some control via MXML to the data source such as:
...
1
vote
1answer
158 views
Customize datagrid to show connectivity between tasks
I have made a program in Flex for creating simple schedules, similar to MS Project or Vico Control. I have one problem that I would like to solve. (You can see it here: OnTime Project Scheduling tool ...
1
vote
1answer
841 views
flex 3 datagrid and xmllistcollection
im trying to display content of xmllistcollection in different fields in my datagrid however unless i use an itemrenderer the value is not displaying in the grid.
the xmllistcollection is populated ...
0
votes
1answer
25 views
Change the visibility of itemRemderer
I have and add button (last row) in one column of the AdvancedDataGrid.
for the row having the add button the rest of fields are not visible.
On click of the add button a new row is added to the grid ...
0
votes
1answer
81 views
How do you delete itemrenderers in a spark Listform for mobile?
I've got a spark ListForm with a custom mxml itemRenderer,
all the itemRenderer has is:
<s:Label text="{data.name}" />
When I run the profiler, the listform is not re-using the itemRenderers,
...
0
votes
1answer
497 views
Flex 4 Datagrid s:MXDataGridItemRenderer issue - default styles are lost?
All, I have implemented a HeaderRenderer on all my Datagrid columns. When I do this, it appears that all the default DataGrid column header styles are being lost, eg:
When I hover over a column ...
0
votes
1answer
199 views
Flex - communicating between Itemrenderes in a single row
I have a datagrid with an XML object as dataprovider. There are 2 columns in the datagrid which have comboboxes as their itemrenderers. The rendereriseditor property is also marked true. These ...