Re: [flexcoders] Working With Dynamic Datagrid

2009-04-24 Thread Jonathan Ackerman
I had a thought. Instead of doing it with a DataGrid, would I be better of doing this in an AdvancedDataGrid? Thanks!

Re: [flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread Josh McDonald
On > Behalf Of *Jonathan Ackerman > *Sent:* Thursday, April 23, 2009 1:19 PM > *To:* flexcoders@yahoogroups.com > *Subject:* Re: [flexcoders] Working With Dynamic Datagrid > > > > > > > Hi Tracy, > > Thanks for writing back. I did assign the XMLList to a varia

RE: [flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread Tracy Spratt
[mailto:flexcod...@yahoogroups.com] On Behalf Of Jonathan Ackerman Sent: Thursday, April 23, 2009 1:19 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Working With Dynamic Datagrid Hi Tracy, Thanks for writing back. I did assign the XMLList to a variable and I could assign that

RE: [flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread Tracy Spratt
lable _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of blkmajk111 Sent: Thursday, April 23, 2009 9:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Working With Dynamic Datagrid Hey All, I'm having an issue that I was hoping someone can help m

Re: [flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread Willy Ci
try this, my old code, private function generateCols(input:XMLList, useAttributes:Boolean = false):Array { var e1:XML = input[0]; var columns:Array = []; var children:XMLList ; if (useAttributes) { children = e1.attributes(); } else { children = e

[flexcoders] Working With Dynamic Datagrid

2009-04-23 Thread blkmajk111
Hey All, I'm having an issue that I was hoping someone can help me out with. I need to populate a datagrid based on XML being returned to Flex. The structure of the XML is as follows: " " When this XML gets returne

RE: [flexcoders] Working with dynamic datagrid columns and dynamic data.

2007-09-14 Thread Alex Harui
, and WHEN fields. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman Sent: Friday, September 14, 2007 7:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Working with dynamic datagrid columns and dynamic data.

[flexcoders] Working with dynamic datagrid columns and dynamic data.

2007-09-14 Thread Jeremy Rottman
I am working on an app, where a certain part of the application requires a data grid have dynamic columns. This part of the issue is easy. The hard part of my issue is creating the dataField for these dynamic columns out of a dynamic array that I get back from coldfusion. So with out further ado t