2011-07-20 15 views
0

私のUserInfromationフォームにはusername、location(city)とgenderとしてのラジオボタンの2つの入力フィールドがあり、addボタンとaddボタンをクリックすると、そのデータが実行時にDataGridに追加されます。 私はこれをどのように行うのか再現できません。 誰もこの例で私を助けることができますか?ここでflex4でランタイムにアイテムをデータグリッドに追加するには?

答えて

0

は(コード付き)のサンプルアプリです:物事の

<?xml version="1.0" encoding="utf-8"?> 
<s:WindowedApplication 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:layout> 
     <s:VerticalLayout/> 
    </s:layout> 

    <fx:Script> 
     <![CDATA[ 
      import mx.collections.ArrayCollection; 

      private var ac:ArrayCollection = new ArrayCollection(); 

      protected function addBtn_clickHandler(event:MouseEvent):void 
      { 
       var obj:Object = new Object(); 
       obj.userName = userNameTI.text; 
       obj.location = locationTI.text; 
       ac.addItem(obj); 
      } 
     ]]> 
    </fx:Script> 

    <fx:Declarations> 
     <!-- Place non-visual elements (e.g., services, value objects) here --> 
    </fx:Declarations> 
    <mx:Form width="100%"> 
     <mx:FormItem label="UserName:"> 
      <s:TextInput id="userNameTI"/> 
     </mx:FormItem> 
     <mx:FormItem label="Location:"> 
      <s:TextInput id="locationTI"/> 
     </mx:FormItem> 
    </mx:Form> 
    <s:Button id="addBtn" label="Add" click="addBtn_clickHandler(event)"/> 
    <mx:DataGrid id="dg" width="100%" dataProvider="{ac}"/> 
</s:WindowedApplication> 

カップルは練習として、あなたのために残されている:)

関連する問題