Cannot access arrayCollection's children in datagrid - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:13:00Z http://stackoverflow.com/feeds/question/897819 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/897819/cannot-access-arraycollections-children-in-datagrid 0 Cannot access arrayCollection's children in datagrid Florian 2009-05-22T13:21:59Z 2009-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>&lt;entry&gt; &lt;title&gt;Test 2&lt;/title&gt; &lt;id&gt;http://collaboration.*****.com/collaboration/messaging/feeds/****/todo//7D6637D3E86B3ED3C12575B***8479&lt;/id&gt; &lt;link rel="alternate" href="notes:///C12575B4004***8/0/7D6637D3E86B3ED3C12575B6004E8479" type="application/vnd.lotus-notes"/&gt; &lt;published&gt;2009-05-14T16:17:37+02:00&lt;/published&gt; &lt;updated&gt;2009-05-14T16:17:56+02:00&lt;/updated&gt; &lt;clb:todo&gt; &lt;clb:uid&gt;7D66***3ED3C12575B6004E8479&lt;/clb:uid&gt; &lt;clb:due&gt;2009-05-31T12:01:00+02:00&lt;/clb:due&gt; &lt;clb:status&gt;Not Started&lt;/clb:status&gt; &lt;/clb:todo&gt; &lt;/entry&gt; </code></pre> <p>My Datagrid Code:</p> <pre><code> &lt;mx:AdvancedDataGrid y="10" id="notesGrid" width="90%" height="243" designViewDataType="flat" x="10" selectionMode="multipleRows" dataProvider="{notesArray}" &gt; &lt;mx:columns&gt; &lt;mx:AdvancedDataGridColumn headerText="TITRE" dataField="title" fontWeight="bold" /&gt; &lt;mx:AdvancedDataGridColumn headerText="STATUT" dataField="todo.status"/&gt; &lt;/mx:columns&gt; &lt;/mx:AdvancedDataGrid&gt; </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#898066 0 Answer by Eric Belair for Cannot access arrayCollection's children in datagrid Eric Belair 2009-05-22T14:11:00Z 2009-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>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;atomFeed xmlns:clb="CLB.data"&gt; &lt;entry&gt; &lt;title&gt;Test 2&lt;/title&gt; &lt;id&gt;http://collaboration.*****.com/collaboration/messaging/feeds/****/todo//7D6637D3E86B3ED3C12575B***8479&lt;/id&gt; &lt;link rel="alternate" href="notes:///C12575B4004***8/0/7D6637D3E86B3ED3C12575B6004E8479" type="application/vnd.lotus-notes"/&gt; &lt;published&gt;2009-05-14T16:17:37+02:00&lt;/published&gt; &lt;updated&gt;2009-05-14T16:17:56+02:00&lt;/updated&gt; &lt;clb:todo&gt; &lt;clb:uid&gt;7D66***3ED3C12575B6004E8479&lt;/clb:uid&gt; &lt;clb:due&gt;2009-05-31T12:01:00+02:00&lt;/clb:due&gt; &lt;clb:status&gt;Not Started&lt;/clb:status&gt; &lt;/clb:todo&gt; &lt;/entry&gt; &lt;/atomFeed&gt; </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#898777 0 Answer by cliff.meyers for Cannot access arrayCollection's children in datagrid cliff.meyers 2009-05-22T16:34:34Z 2009-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#898884 0 Answer by Christopher W. Allen-Poole for Cannot access arrayCollection's children in datagrid Christopher W. Allen-Poole 2009-05-22T16:58:47Z 2009-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 &lt; 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>&lt;mx:AdvancedDataGridColumn headerText="STATUT" dataField="todo.status"/&gt; </code></pre> <p>with this:</p> <pre><code>&lt;mx:AdvancedDataGridColumn headerText="STATUT" dataField="{ todo.status }"/&gt; </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>