Cannot access arrayCollection's children in datagrid - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T20:13:00Zhttp://stackoverflow.com/feeds/question/897819http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/897819/cannot-access-arraycollections-children-in-datagrid0Cannot access arrayCollection's children in datagridFlorian2009-05-22T13:21:59Z2009-11-01T11:00:04Z
<p>Hi Guys,</p>
<p>I've got a Flex 3 application with an HTTPService returning an Atom feed. I catch the result from it and store it in an arrayCollection which is then the provider of my Datagrid.
I have no problem accessing the data from the "first-level" of my Array, but cannot go under it.
Not very clear, so here is some code:</p>
<p>My XML [part of it]:</p>
<pre><code><entry>
<title>Test 2</title>
<id>http://collaboration.*****.com/collaboration/messaging/feeds/****/todo//7D6637D3E86B3ED3C12575B***8479</id>
<link rel="alternate" href="notes:///C12575B4004***8/0/7D6637D3E86B3ED3C12575B6004E8479" type="application/vnd.lotus-notes"/>
<published>2009-05-14T16:17:37+02:00</published>
<updated>2009-05-14T16:17:56+02:00</updated>
<clb:todo>
<clb:uid>7D66***3ED3C12575B6004E8479</clb:uid>
<clb:due>2009-05-31T12:01:00+02:00</clb:due>
<clb:status>Not Started</clb:status>
</clb:todo>
</entry>
</code></pre>
<p>My Datagrid Code:</p>
<pre><code> <mx:AdvancedDataGrid y="10" id="notesGrid" width="90%" height="243" designViewDataType="flat" x="10" selectionMode="multipleRows" dataProvider="{notesArray}" >
<mx:columns>
<mx:AdvancedDataGridColumn
headerText="TITRE"
dataField="title"
fontWeight="bold"
/>
<mx:AdvancedDataGridColumn headerText="STATUT" dataField="todo.status"/>
</mx:columns>
</mx:AdvancedDataGrid>
</code></pre>
<p>The "title" column shows the data correctly, but the status column is empty ! When I launch my app in debug mode, I can see that my notesArray has the correct format and I can access todo -> status with the value...</p>
<p>I've been stuck on this for a few days, I'd appreciate any help !
Thanks and best regards !!</p>
http://stackoverflow.com/questions/897819/cannot-access-arraycollections-children-in-datagrid/898066#8980660Answer by Eric Belair for Cannot access arrayCollection's children in datagridEric Belair2009-05-22T14:11:00Z2009-05-22T14:11:00Z<p>This could have something to do with the fact that the "status" node is using a different namespace "clb" than your title. You may need to specify the namespace in order to access it's data.</p>
<p>I had to do something similar when retrieving XML data from a .NET WebService. It took me a few days to figure it out.</p>
<p>If your XML looks like this:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<atomFeed xmlns:clb="CLB.data">
<entry>
<title>Test 2</title>
<id>http://collaboration.*****.com/collaboration/messaging/feeds/****/todo//7D6637D3E86B3ED3C12575B***8479</id>
<link rel="alternate" href="notes:///C12575B4004***8/0/7D6637D3E86B3ED3C12575B6004E8479" type="application/vnd.lotus-notes"/>
<published>2009-05-14T16:17:37+02:00</published>
<updated>2009-05-14T16:17:56+02:00</updated>
<clb:todo>
<clb:uid>7D66***3ED3C12575B6004E8479</clb:uid>
<clb:due>2009-05-31T12:01:00+02:00</clb:due>
<clb:status>Not Started</clb:status>
</clb:todo>
</entry>
</atomFeed>
</code></pre>
<p>Add this to the ActionScript where you handle the HTTPService result:</p>
<pre><code>private namespace clbNS = "CLB.data";
use namespace clbNS;
</code></pre>
<p>For example:</p>
<p>package
{
import mx.rpc.events.ResultEvent;</p>
<pre><code>public class handleAtomFeed
{
private namespace clbNS = "CLB.data";
use namespace clbNS;
private function resultHandler(event:ResultEvent):void
{
// pares the XML and build your ArrayCollection
}
}
</code></pre>
<p>}</p>
<p>Give it shot, it just might work!!!</p>
http://stackoverflow.com/questions/897819/cannot-access-arraycollections-children-in-datagrid/898777#8987770Answer by cliff.meyers for Cannot access arrayCollection's children in datagridcliff.meyers2009-05-22T16:34:34Z2009-05-22T16:34:34Z<p>I'm pretty certain that the dataField property of DataGridColumn / AdvancedDataGridColumn doesn't automatically resolve nested properties, i.e. "todo.status"; you may want to try writing a labelFunction that will access the nested XML element for you.</p>
http://stackoverflow.com/questions/897819/cannot-access-arraycollections-children-in-datagrid/898884#8988840Answer by Christopher W. Allen-Poole for Cannot access arrayCollection's children in datagridChristopher W. Allen-Poole2009-05-22T16:58:47Z2009-05-22T16:58:47Z<p>A general rule I follow when it comes to problems of this sort is to do something like this (just to make sure that you are getting everything you are looking for):</p>
<pre><code>import flash.utils.getQualifiedClassName;
// As a general rule, I don't find it the best idea to access an object in
// an IList (ArrayCollection, XMLListCollection, et al ) by a dynamic property.
// Especially when they are coming from XML, the best way to access everything
// is through getItemAt.
var len:int = todo.length;
for( var i:int = 0; i < len; i++ )
{
var item:* = todo.getItemAt( i );
trace( item, getQualifiedClassName( item ) );
}
</code></pre>
<p>After that, my first try would be replace this:</p>
<pre><code><mx:AdvancedDataGridColumn headerText="STATUT" dataField="todo.status"/>
</code></pre>
<p>with this:</p>
<pre><code><mx:AdvancedDataGridColumn headerText="STATUT" dataField="{ todo.status }"/>
</code></pre>
<p>Very often Flex does not play well with nested properties at all, but when you use the brackets, it gives the value which is found at that location as a more direct reference.</p>
<p>I think you are also better off using an XMLListCollection over an ArrayCollection. That way you can call children by name instead of relying on their normal index in the IList.</p>