Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
Dizzia #1
Repeater woes
Alright, using a repeater to grab some data out. I can't get this to work
properly though. (ever other item pulls out)
[hr]
This works:
<mx:Repeater id ="rep1" dataProvider="{dataGrid.selectedItem.icons}">
<mx:SWFLoader source="{rep1.currentItem.source}"/>
</mx:Repeater>
to generate that icon
[hr]
This doesn't work:
<mx:Repeater id="cal2" dataProvider="{ArrayCollection}">
<mx:Repeater id="cal3" dataProvider="{cal2.currentItem.icons}">
<mx:SWFLoader source="{cal3.currentItem.source}" height="9" width="9"/>
</mx:Repeater>
</mx:Repeater>
[hr]
Yet, this works:
<mx:Repeater id="cal1" dataProvider="{ArrayCollection}">
<mx:VBox toolTip="{cal1.currentItem.name}" verticalGap="1" width="10"
backgroundAlpha=".20" backgroundColor="#3AAEFF">
</mx:Repeater>
to generate all names passed into the array
[hr]
Any / all help appreciated, seems like this should be a simple fix
Dizzia Guest
-
WSE 2 woes
I have created the Hello World web service and implemented WSE 2 tokens to validate against a database. I am using VS 2003 and installed the... -
GD.pm install woes
I've been trying to install GD.pm for a few days now, but to no avail. I am using Fedora Core 2 with a P4 system. I have installed libgd... -
PDF woes
EPS files are intended to be placed on a page in a page-layout program, and thus contain no page orientation or page size information. If you are... -
Copyright woes
Hi All, I have a dilema with a client over a director piece. First we had a mild dispute a few months back because they want to sell a program... -
Date Woes
I am trying to convert a date from this format: yyyymmddHHMMSS.mmmmmmsUUU to a format that ASP.NET (VB.NET) understands. The above date... -
ntsiii #2
Re: Repeater woes
Implement the inner repeater as a custom component, and pass the entire
cal2.currentItem. implement the item property using a setter function so that
you can debug the data you are getting.
The declaritive mxml is hard to debug.
Tracy
ntsiii Guest



Reply With Quote

