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 {

[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 mx:Model id=alldone root actionalldone/action alldone{dgTodo.columns}/alldone /root /mx:Model reqTodos.send(alldone); in my $_POST