flash on 2010-6-13
♥0 |
Line 26 |
Modified 2010-06-13 10:56:03 |
MIT License
archived:2017-03-30 02:16:54
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/5C1W
*/
<?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">
<mx:DataGrid dataProvider="{list}" x="100" y="100" editable="true">
<mx:columns>
<mx:DataGridColumn dataField="title" editable="false"/>
<mx:DataGridColumn dataField="price" />
<mx:DataGridColumn dataField="date" />
</mx:columns>
</mx:DataGrid>
<fx:Declarations>
<fx:XMLList id="list">
<s>
<title>FF</title>
<price>6980</price>
<date>12/24</date>
</s>
<s>
<title>DQ</title>
<price>7140</price>
<date>7/3</date>
</s>
</fx:XMLList>
</fx:Declarations>
</s:Application>