Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
334 views

Arraycollection is being passed into function by value instead of by reference in flex 3

I want to set arrayCollection #2 = to arrayCollection #1 via a function in flex 3. I pass both array collections to a function and set arrayCollection #2 = arrayCollection #1. However, it seems to ...
5
votes
4answers
877 views

Passing an ArrayCollection from ColdFusion to Flex (with BlazeDS)

When pushing objects from ColdFusion to Flex via BlazeDS, and mapping the classes using RemoteClass... [RemoteClass(alias="blah.blah")] ...is it possible to have ColdFusion "Arrays" (or some Java ...
4
votes
1answer
1k views

Convert Vector.<SomeType> to Array?

Unfortunately in Actionscript, it seems like support for the Vector class isn't fully there yet. There are some scenarios where I need to convert a Vector into an array (creating an ArrayCollection ...
4
votes
4answers
6k views

Why does Flex's ArrayCollection's Contain method look at memory reference?

When using .contains() on an ArrayCollection in Flex, it will always look at the memory reference. It does not appear to look at an .equals() method or .toString() method or anything overridable. ...
3
votes
1answer
339 views

When to use ArrayCollection or Array in as3?

I know that an ArrayCollection is a wrapper over an Array, but what I wanted to know is when to choose one over the other? Will the over usage of ArrayCollections result in performance?
3
votes
2answers
1k views

mx.collections missing? ArrayCollection() in Flex4 (Flash Builder 4)

I have some code that uses an ArrayCollection, it imports: import mx.collections.ArrayCollection; then: static protected var myAC:ArrayCollection = new ArrayCollection(); Seems straightforward, ...
2
votes
2answers
299 views

Flex applying the sort/filter on an arraycollection without dispatching event

I have a object that is extended from arraycollection. This object has to access and manipulate the arraycollections source object. When this happens, the local sorted/filter copy of data goes out of ...
2
votes
3answers
207 views

AddItemAt() of arraycollection is not working in flex

I am trying to add an item in arraycollection which is sorted and filtered using addItemAt(). But addItemAt() is not adding item to the specified index. Do anyone knows the solution for the above ...
2
votes
5answers
380 views

Iterating over ArrayCollection while adding and removing items

I want to iterate over an ArrayCollection in Flex while there can be items added and removed. Since i didn't find a way to use a "classic" Iterator like in Java, which would do the job. I tried the ...
2
votes
1answer
124 views

How to get rid of already selected items in combobox

Am having an issue with combobox duplications i have 10 autocomplete comboboxes with all having same dataprovider... suppose like this array collection public var costCenter:ArrayCollection = new ...
2
votes
2answers
659 views

Doctrine2 ArrayCollection

Ok, I have a User entity as follows <?php class User { /** * @var integer * @Id * @Column(type="integer") * @GeneratedValue */ protected $id; /** * @var ...
2
votes
1answer
312 views

Fastest way to get an Objects values in as3

Ok, so I swear this question should be all over the place, but its not. I have a value object, inside are lots of getters/setters. It is not a dynamic class. And I desperately need to search an ...
2
votes
1answer
501 views

Using one data source for multiple datagrids in Flex3

I want to use one data source (e.g. an Array) for multiple Datagrids that have different filterFunctions attached and show different columns. First, I thought I use a very straight forward apporach: ...
1
vote
1answer
63 views

Merge data into filtered ArrayCollection (maybe by using IViewCursor or localIndex?)

I have a Flex question, which isn't as easy as it seems at first. At least I'm struggling since 1 week with it. I have prepared a test case and a screenshot. The question is: how do you merge data ...
1
vote
1answer
34 views

Sending ArrayCollections via P2P Flex

I have a question regarding P2P with flex. When passing data between two applications using P2P. I get the following error: warning: unable to bind to property 'piece' on class 'Object' (class is ...
1
vote
2answers
77 views

Actionscript 3: reordering an array collection based on another array collection hierarchy

I have an array, crewPositionsAC that contains a list of position abreviatations - EP, PR, DR, WR, and so on. These positions are read in through an XML file each time my flex application loads. ...
1
vote
1answer
143 views

Memory difference between arraycollection and dictionary in Flex

To optimize my application dictionary is a better option or arraycollection where both satisfy my needs. Please let me know. Thank you in advance.
1
vote
2answers
122 views

Flex 3: Empty keys in array collection… possible?

Does flex allow empty, or missing, keys within an array collection? For example, would the following code be okay: var myAC:ArrayCollection = new ArrayCollection; myAC.addItemAt("hi", 0); ...
1
vote
1answer
139 views

Flex ArrayCollection - accesing object methods / attributes?

Maybe i didn't get the real meaning of the ArrayCollection, but first of all some code public var test1:AkwRep = new ...
1
vote
2answers
598 views

Flex - ArrayCollection - adding and removing a filterFunction

I am using Adobe Flash Builder 4 Premium. I have a mx:DataGrid and a s:TextInput, and I am trying to set up a search box that filters the DataGrid on each key press. This page shows a nearly perfect ...
1
vote
2answers
288 views

Flex 3: removing items from an array collection when the user clicks a button and reflecting that in a repeater

I have an arrayCollection with the following structure: projectErrorsAC 0 project1number project2number position1number position2number project1name ...
1
vote
2answers
132 views

flex 3: Can anybody help me optimize this array -> arrayCollection function?

I'm using a parent to pass a multi-dimensional array to a child. Structure of the array, named projectPositions is as follows (with example data): projectPositions[0][0] = 1; projectPositions[0][1] ...
1
vote
1answer
172 views

Removing Null values from an Array Collection using Flex

I have an ArrayCollection that I want to have all null or empty values removed. What line in the code might accomplish this?
1
vote
3answers
679 views

Flex: Swapping two elements in Array Collection

What's the best-approach to swap to elements in a Flex Array Collection? I am binding a ArrayCollection as a dataprovider to combo-box. Selecting a row, should move the object to the top of the ...
1
vote
2answers
368 views

arraylist nor getting store in hashmap

i m parsing xml in which particular designation contaion list of staff... so while parsing i usee hashmap to store value.I continueously add staffdata in arraylist and when i found end element tag i ...
1
vote
1answer
377 views

Cannot figure out why List won't display data from ArrayCollection

I'm working on a flash cards application and am using an ArrayCollection of Objects to store each cards individual data. When the user click the 'save' button, the text from the two textAreas and the ...
1
vote
1answer
324 views

Length of filtered ArrayCollection in actionscript 3/flex

I need to display the number of items in a List component that has a filtered ArrayCollection as its data provider. I don't see a way to get the filtered collection's length. Anyone know? Thanks.
1
vote
1answer
1k views

doctrine2 ArrayCollection error

I am trying to follow the advice from the doctrine docs on this page - initialising a class member with the ArrayCollection. All works well for the example given in the docs. I'm trying to do it with ...
1
vote
3answers
168 views

C# - Any clever way to get an int array from an object collection?

How can I create an easy helper method to get an int array from a collection of objects? The idea would be have a method which receive a collection of "User" class: public class User { public ...
1
vote
3answers
109 views

class object in class with php oop

I am not even sure how to ask. I do this all the time in C# but for the life of me I cannot find any decent examples in PHP. Can you help? What I am trying to do is for example. Say I have a class ...
1
vote
1answer
126 views

updating parts of a ArrayCollection

I have a ArrayCollection, containing a set of Value Objects. This ArrayCollection populates a DataGrid. I'm loading data into the ArrayCollection via a HTTPService call to the server. Once the first ...
1
vote
1answer
113 views

How do i save a form to the database without knowing the field type or its id in flex and coldfusion?

I am working on a function to generate a form at runtime in Flex based on a call to the DB. The call to the DB returns the field types, id, tooltips etc as an arraycollection, the arraycollection is ...
1
vote
1answer
278 views

binding to arraycollection does not work

I am using flex SDK 3.5. I have model.as and in it i have an ArrayCollection (name it arr_mod) which is Bindable. From my mxml i link to this arr_mod in three places: 1) in DataGrid i set ...
1
vote
5answers
417 views

How Do I Add Value To All Previous Values In Array

Lets say I have the following array: my_array = [1, 5, 8, 11, -6] I need to iterate over this array and add the values prior to the current value together. An example will probably be easier to ...
1
vote
2answers
690 views

ArrayCollection error in Flex does not accept single XML nodes - alternatives?

i get this error when i retrieve an XML that only has 1 node (no repeating nodes) and i try to store in an ArrayCollection. -When I have MORE than 1 "name" nodes...i do NOT get an error. TypeError: ...
1
vote
1answer
479 views

Converting a string into ArrayCollection (C#, see string below)

how to get from such string ' name1{value1,value2};name2{value3}; ... nameN{value12, valueN} ' Array or arrays in such form: Array = {string, int};{string, int};{string, int}; like this: { { name1 ...
1
vote
1answer
573 views

flex arraycollection - can i specify the size for an arraycollection?

Context: I use an ArrayCollection object as follows: 1) Number of elements is fixed. 2) Elements are inserted at a given position, based on some order. Question: Can I set the max size of the ...
1
vote
1answer
302 views

External data in TileList Flex

I'm working for the first time with a TileList and an itemRenderer and I'm having a bit of trouble getting the information from my array collection to display and looking for some advice. Here's what ...
1
vote
2answers
578 views

Flex: How can I Make changes to an ArrayCollection bound to data grid live?

I have an ArrayCollection bound to an editable DataGrid, another component needs to know when the ArrayCollection changes (as a result of changes in the DataGrid) so it can also update itself, so is ...
1
vote
1answer
1k views

Flex AdvancedDataGrid AdvancedDataGridRendererProvider childrenField ArrayCollection - Question about behaviour

I have a main class ClassA that has a bunch of "normal" properties that are simple datatype like ints, strings, etc. It also has one property ("childItems") that is an ArrayCollection of ClassB. I am ...
1
vote
1answer
484 views

How to get the memory size of an ArrayCollection in Flex

I have built an image cache which is an ArrayCollection containing images. I have built functionality so that the cache can hold a max of 250 images. However, the images can be of a different size, so ...
1
vote
1answer
469 views

Flex XML dynamic type

I have an application which receives dynamic XML data from a server. The structure of the XML is dynamic and the tags/attribute names cannot be predicted. NO row items can be hardcoded. The data is ...
1
vote
1answer
2k views

How do I change the value of an item in a Flex ArrayCollection

I have an ArrayCollection with values predefined. I want to assign a new value to items in the arrayCollection but can not figure out how. Basically I want to do something like this: ...
1
vote
2answers
1k views

Watching an ArrayCollection's length property in AS3/Flex

I would like to put an eventListener on an ArrayCollection's length proprety, but I don't know how to go about this. I want to do this because I only want code to execute when a certain number of ...
1
vote
2answers
2k views

Reverse order of bars in a Flex BarChart

I'm trying to use a BarChart in Flex. I'd like it to order the bars according to the order of the ArrayCollection I fed it. i.e. data at index 0 should be the first bar on top. However, Flex is giving ...
1
vote
3answers
13k views

Flex: Convert ArrayCollection to XML

In Flex, it's easy to convert the XML to Object and to ArrayCollection by using var decoder:SimpleXMLDecoder = new SimpleXMLDecoder(); decoder.decodeXML( xml ); But is there a good way to convert ...
1
vote
4answers
983 views

possible to display an arrayCollection of Sprites in a List component?

I have an arrayCollection of objects that extend Sprite, and have bitmaps within them. I want to display these in a list (or some other component that would allow a user to scroll through them, and ...
1
vote
1answer
132 views

Different filtered dataProviders for the same data?

I have several lookup tables, some of which refer to or are relationships between others. For instance, I have membership type included inventory which has Membership ID and Inventory Type ID and is ...
0
votes
3answers
67 views

Read Individual Data from array collection

I used var dp:ArrayCollection = new ArrayCollection(container.GetVotesResult); to get the JSON data from GetVotesResult method. I get the values as below. {"GetVotesResult": ...
0
votes
3answers
93 views

Flex arraycollection getitemindex always return -1

I'm facing the same problem. Can some explain me with a example? My code is: var dataList:ArrayCollection = new ArrayCollection([{name:"alauddn"}, {name:"ansari"}]); private function ...

1 2 3