flash on 2010-6-16
♥0 |
Line 35 |
Modified 2010-06-16 13:26:27 |
MIT License
archived:2017-03-09 21:11:19
ActionScript3 source code
/**
* Copyright kihon ( http://wonderfl.net/user/kihon )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/e6WU
*/
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx">
<s:HGroup>
<mx:DataGrid id="gridA" dataProvider="{list}" dragMoveEnabled="true" dragEnabled="true">
<mx:columns>
<mx:DataGridColumn dataField="title" />
<mx:DataGridColumn dataField="quantity"/>
<mx:DataGridColumn dataField="date"/>
</mx:columns>
</mx:DataGrid>
<mx:DataGrid id="gridB" dropEnabled="true">
<mx:columns>
<mx:DataGridColumn dataField="title" />
<mx:DataGridColumn dataField="quantity"/>
<mx:DataGridColumn dataField="date"/>
</mx:columns>
</mx:DataGrid>
</s:HGroup>
<fx:Declarations>
<fx:XMLList id="list">
<s>
<title>FF</title>
<quantity>3</quantity>
<date>12/24</date>
</s>
<s>
<title>DQ</title>
<quantity>7</quantity>
<date>7/3</date>
</s>
</fx:XMLList>
</fx:Declarations>
</s:Application>