The ArrayCollection class is a wrapper class that exposes an Array as a collection in Flex which can be accessed and manipulated. Use this tag for questions related to arraycollection.
0
votes
0answers
8 views
Flex 3 - Why change index when checkbox event
<mx:AdvancedDataGrid id="result" width="100%" height="100%"
dataProvider = "{ mainSearchList }"
>
...
1
vote
1answer
38 views
ArrayCollection of objects extending an abstract MappedSuperClass
I'm building a form generator using Symfony 2.2 with Doctrine.
My entities are the following:
Form
WidgetText
WidgetSelect
All my widgets extend the following class:
/**
* Widget
*
* ...
1
vote
2answers
75 views
symfony2 form multiple select with arraycollection
I would like to create a form to edit my users.
Users and roles connected with ManyToMany.
In UserUsers entity I have a $roles variable which is ArrayCollection:
public function __construct()
{
...
0
votes
0answers
59 views
Flex gotcha: Something to do w/assigning ArrayCollection elements with ObjectProxy using [] operator
I have some ActionScript code that assigns an ArrayCollection using:
var oProxy:ObjectProxy = new ObjectProxy(myobject);
arr[i] = oProxy;
Stepping through this code, I find that arr[i] is not ...
0
votes
1answer
55 views
How to Add an Icon to a List of Views in Adobe Flex Mobile Project
I would like to add an Icon to a list of views in my flex mobile project. I am not sure of how to approach this. Here is the line of code, and below it is an image of the view.
<s:List ...
1
vote
2answers
19 views
delete an object stored in several ArrayCollections
I have several arraycollections (I don't know their number in advance) which contain one same object (among others).
var obj:MyObject = new MyObject();
var arc1:ArrayCollection = new ...
0
votes
1answer
35 views
ObjectUtil.copy won't copy any ArrayCollection
For a while now in my app I've used ObjectUtil.copy to copy array collections. Recently we've been making a lot of changes to the app and its started breaking on any of my copy commands. I originally ...
0
votes
1answer
35 views
Sorting Multidimensional Array in Actionscript
I have an array of arrays that I need to sort, but I'm having trouble getting it figured out. My main array (mainArr) looks like this:
mainArr = ({code:"1", date:"1/2/2001", status:"Active"},
...
0
votes
1answer
83 views
flex : how to cast int to String in Object
private var xml:XML = <root><data><name>123456789012345678903333333333</name></data></root>
public function xmlConversion(xml:XML):void
{
...
0
votes
0answers
50 views
How to add fxg images to an ArrayCollection in Flex using ActionScript?
How do I add fxg images to an ArrayCollection in Flex 4 using an ActionScript function like so:
<s:ArrayCollection id="dp"/>
private function init():void {
var pic1:p1 = new p1(); //fxg ...
0
votes
2answers
58 views
Flex consuming huge memory for large data
When flex array collection is handled with large amount of data for example 2,00,000 new referenced objects the memory in flex client browser shoots up 20MB. This excess 20MB is independent of the ...
0
votes
1answer
126 views
Flex Builder - “Data binding will not be able to detect changes when using square bracket operator”
I am building an app. The first page has a list generated from a local xml which when you select an room type on that list, it pushes the nodes under the selected item; title page, page image, and a ...
0
votes
1answer
224 views
doctrine2 arraycollection count() php
i have the following code:
$countries = $em->getRepository("country")->findAll();
$array = array();
$count = 0;
foreach($countries as $country){
...
1
vote
0answers
178 views
Doctrine2, Check entity in an Arraycollection with queryBuilder
I have just a simple question about the query builder but I haven't find any answers...
I make a filter for product's list and I want to check if my selected attributes are in the arrayCollection ...
0
votes
2answers
92 views
Repository Methods From Entity In ArrayCollection
So, we have two entities. One with repository and another is not. When we trying to get the data from another table we will get the ArrayCollection data. Question is how to call this entity repository ...
2
votes
1answer
92 views
Doctrine2 doesn't load Collection until a method is called
When does Doctrine2 loads the ArrayCollection?
Until I call a method, like count or getValues, I have no data
Here is my case. I have a Delegation entity with OneToMany (bidirectional) relation to a ...
1
vote
1answer
128 views
Assigning arraycollection in component as dataprovider for datagrid in main app
Hi I have a simple (I think) question. I have the following custom component in Flex 4.6 (partial code).
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value ...
0
votes
2answers
276 views
Flex Dropdownlist dataprovider reset on refresh
I have couple of dropdownlist controls, that shares the same dataprovider(same reference).
I had overridden the set dataprovider method for a sort function.(code below). The issue is that, when I set ...
0
votes
0answers
66 views
Using Doctrine2 is it possible to populate ArrayCollections from multiple tables?
I'm using Doctrine2 (from within Symfony2) and wondered if it was possible to create a mapped superclass and then create Doctrine entities deriving from it (which persist to separate tables). Then ...
2
votes
1answer
156 views
arraycollection error in flex4.6
I'm having difficulty passing json to a datagrid.
I get the following error:
TypeError: Error #1034: Type Coercion failed: cannot convert mx.collections::ArrayCollection@bc292a9 to Array.
at ...
0
votes
1answer
370 views
Flex arraycollection sorting not working
I am trying to sort a list of string stored in an arraycollection. But the sorted result is not correct. Please see my code.
spark.collections.Sort
if(value is ArrayCollection){
...
0
votes
2answers
126 views
In AS3, where do you draw the line between Dictionary and ArrayCollection?
Basically I have been using a Dictionary object in my program that basically took ints as its keys and stored RTMFP peer IDs in the appropriate locations. Each int was unique and represented one ...
0
votes
1answer
264 views
How to get particular items count from arraycollection in flex without a loop
For eg: I have an arraycollection which contains name,standard,age etc.
I just want the count of students who were in standard 'x'.
How this can be possible in flex ArrayCollection without a loop.
...
0
votes
1answer
104 views
ArrayCollection issue in flex
I have an array collection into which im adding different model values as below.
var ob:Object=new Object();
ob.name=string1;
ob.data=model.arraylist1;
ob.id=model.arraylist2;
...
0
votes
2answers
108 views
Is there any difference of reset an ArrayCollection by set it's source or change it's reference
I have two ArrayCollection now (a, b) and a is set bindable. I want to reset a with b.
The old code in our project is like:
a = new ArrayCollection();
for (var i:int = 0; i < b.length; i++) {
...
0
votes
1answer
95 views
using array collection to populate the Tree in Flex
I created an Array Collection that has two layer objects like below, but I get just one layer result. I just see "Countries" result on tree. I set labelField as 'Name' . So what could be my mistake?
...
0
votes
2answers
215 views
Flex LineChart - How To Create LineSeries From Unique Values In An ArrayCollection
I have been trying to figure out a way to create a LineChart that contains numerous LineSeries based off data in an ArrayCollection.
To be more specific, let's say that we have an ArrayCollection as ...
-1
votes
1answer
253 views
Sort ArrayCollection using compareFunction
using Flash Builder 4.6 i want to sort an arrayCollection. the array has 2 properties status, and help_id. I want to sort the array to have all "open" statuses at the top, than all the "read", than ...
0
votes
1answer
176 views
Symfony2 collection field by_reference=false vs. setter
I have a form with a field for tags. Tags is a Doctrine ArrayCollection on the bound entity. The field is by_reference=false as the doc suggested, but binding the form to the entity behaves illegally ...
2
votes
1answer
238 views
Validating arraycollection in symfony2
I'm new to Symfony2 + Doctrine and I´m looking for a way to validate the uniqueness in an Arraycollection. May be it is already answered question but I can´t figure how resolve it.
I`ve a ...
0
votes
1answer
124 views
Casting result.event into an ArrayCollection of Person (Class) in Flex
Im kinda new to the Flex environment and I was wondering how to do this scenario:
My initial code goes like this:
public function displayAllNames(event:ResultEvent):void {
var ...
0
votes
0answers
250 views
Push view based on a selected Array Collection Item (Flex)
I have an array collection, a list , in my main view. I would like to click an item on that list, and have it redirect me to a different view. How do I implement this. I currently have the code setup ...
0
votes
1answer
178 views
How to Push a View Based on a selected Array Collection? (Flash Builder 4.6 , Flex)
I have an application that has an Array Collection of calculator names. Upon selection I would like to push the actual view of the calculator for that item.
Here is my code could someone help me ...
0
votes
2answers
155 views
Multiple arrays, private static function
I have an array list which is connected with a private static function and would like to make another array list on a different view (Flex builder, Action script) so I copied the private static ...
0
votes
2answers
159 views
ActionScript: Sorting datagrid and getting data from specific cells programmatically
I have a datagrid in my code that looks like this:
<s:DataGrid id="dg">
<s:ArrayCollection id="ac">
<s:DataItem ../>
<s:DataItem ../>
</s:ArrayCollection>
...
1
vote
1answer
113 views
Drag drop data between 2 advancedDataGrid and clone instance
I have 2 advanceddatagrid with dataprovider based on an arraycollection of an instanciated actionscript class.
I want to copy and duplicate data from the datagrid1 to the datagrid2...
For duplicate ...
0
votes
0answers
86 views
how to parse the web service result as arraycollection?
I am using Flex Builder and the IDE generates all the calls to my web service. I want to build a filter in a datagrid which it's provider is the result of a web service.
I think I cannot build a ...
0
votes
1answer
110 views
XML ArrayCollection applicationStorageDirectory
I have an XML file that I lives in the applicationStorageDirectory, I need to load the contents into an ArrayCollection.
The XML looks like (see below), I can read and write to it but I need to stick ...
0
votes
1answer
118 views
DataGrid not appropriate dataProvider value
I have an ArrayCollection filled with 'o' objects. This AC should be the dataProvider of a DataGrid. After setting the dp: dgMT.dataProvider=acDataGrid the DataGrid contains only the last item of the ...
0
votes
0answers
35 views
How to tranpose datagrid in Flex Builder [duplicate]
Possible Duplicate:
How to transpose data in Flex dataGrid
I have an arrayCollection with 3 columns as such:
Col1 Col2 Col3 a 1 X b 2 Y c 3 Z d 4 W
I want to tranpose this set of data and ...
0
votes
2answers
473 views
sort ArrayCollection by date then time - Flex
I have an ArrayCollection that I'd like to sort by date and then time (in case there's two items with the same date). I've got it sorting by date fine (YYYY/MM/DD) but I can't figure out the time bit, ...
1
vote
2answers
213 views
flex 4 tree control not updating
I'm using the MX Tree control in Flex 4.6. Its data provider is a nested ArrayCollection. The way the control works is that when a tree node is expanded the event is bubbled up to another component ...
0
votes
2answers
432 views
How to sort an ArrayCollection by values
I have a list of items in an ArrayCollection that I'd like sorted by a certain value (not alphabetical). Is it possible to sort this way?
Here are the values I want to be ordered by:
Resolved
Closed
...
1
vote
1answer
123 views
How to transpose data in Flex dataGrid
I have an arrayCollection with 3 columns as such:
Col1 Col2 Col3
a 1 X
b 2 Y
c 3 Z
d 4 W
I want to tranpose this set of data and display it in Flex ...
0
votes
0answers
87 views
Flex: Sort an arrayCollection on the basis of a subProperty
I have an ArrayCollection, 'matchDetails', the members of which have a property called 'game', which in turn has a property called 'minute', which is an int.
game also has another property 'id' which ...
0
votes
1answer
154 views
ruby on rails select collection, filter results from array [enumerable]
current i am trying to restrict the information feed into an option select field to only display the criteria i have selected. with the code below this seems to be working
= ...
0
votes
1answer
82 views
How can i add collection of entities in doctrine2 to main entity
I have the
class user
{
@manytomany
private $countries
}
and
class country {
@manytomany
private $user
}
Now when the new user is created then i want to add predefined ...
0
votes
1answer
802 views
Twig - display a property inside an entity item
I have an entity that has an items property that is an array of item entities. the item entity has id and name properties.
what I want to do is to get entity.items and display all name properties, ...
1
vote
0answers
107 views
Flex big data volume performance (ADEP/LCDS dataservice)
As we have found a solution for Hibernate, server side loads the data very fast : less than a sec for thousands of records and more. Now the problem is on transporting data from server to browser. Two ...
0
votes
1answer
218 views
what happens when i say arrayCollection.addItemAt(object,0);
Lets say i have an Array collection, filled with some elements. If i say
myArrayCollection.addItemAt(object,0);
What exactly happens here? Does all the elements gets shifted rigthwards? or element ...

