-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a repeater inside a repeater. Where the parent repeater is bound to a Datable which has a column with a Datatable in it.
I would like to bind the child repeater to the datatable column in the parent repeater's datarow
Is this possible? i was thinking i could do this directly in the aspx file…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have a flex repeater for an accordion inside a TitleWindow that is quite slow, I've already set recycleChildren to true, which has helped, but it's still slow on the first load and causes the animation to stutter when I open the TitleWindow.
The repeater is just one part of what's visible…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a Multiview search feature on a Web User Controller that is called within a Repeater, OHMY!!
I have some training sessions being listed out on a page, each calling an employeeSearch Web User Controller so people can search for employees to add to the training session. I have the Employee Names…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm building a wholesale order form on a website.
The current plan is to...
-get an ArrayList of DepartmentUnits
-a DepartmentUnit has various attributes like "deptId", "description" and its own ArrayList of StoreItems
-The StoreItems have attached ArrayList of various SizeOptions
-The SizeOptions…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to loop through a row of an arraycollection using nested repeater;
<mx:Repeater id="rp1" dataProvider="{arrayCollection}">
<mx:Repeater id="rp2" dataProvider="{rp1.currentItem}">
<mx:Button height="49" width="50" label="{rp2.currentItem.name}" />
</mx:Repeater>
</mx:Repeater>…
>>> More