Re: [flexcoders] Sending DataGrids data (columns) as POST variable - HOW TO?

2006-08-22 Thread Nate Hardt
If you want to parse the column names on the server, you could write a function to concatenate the column names and send them as a group. Instead of calling reqTodos.send call sendColumnNames. code: [Bindable] public var columnHeaders:String; public function sendColumnNames():void { va

[flexcoders] Sending DataGrids data (columns) as POST variable - HOW TO?

2006-08-21 Thread kwdowicz
How to send DataGrids Columns as POST variable in case this method ?: dgTodo is instance of DataGrid reqTodos is instance of HTTPService alldone {dgTodo.columns} reqTodos.send(alldone); in my $_POST variables i have only names of Columns objects . Please help, i'm ne