From Adobe Flex 4.6 - Spark DataGrid control, configuring columns:
http://help.adobe.com/en_US/flex/using/WS0ab2a460655f2dc3-427f401412c60d04dca-8000.html
Note: You can only sort the columns of the DataGrid programmatically
by sorting the IList passed to the columns property. That is, you
cannot use the mouse to drag a column to rearrange the columns.
Therefore you would need a programmatic implementation to reorder GridColumns in the columns IList.
<s:columns>
<s:ArrayList>
<s:GridColumn dataField="Album"/>
<s:GridColumn dataField="Price"/>
</s:ArrayList>
</s:columns>