1

データグリッドがあり、このグリッドのデータプロバイダーは RPC 呼び出しの結果です。結果セットの構造は次のとおりです。

Array
[0]->Object #1
      [one] => 1
      [two] => 1
      [three] => Object #2
          [apple1] = > Object #3
              [color] =>    red
              [rate] => 20
          [apple2] => Object #4 ( the    number of apples is dynamic, apple3,apple4 .. and so on)
              [color] =>    blue
              [rate] => 100

など...そのため、動的であるため、リンゴオブジェクトの数は異なります。このデータをデータグリッドに表示するにはどうすればよいですか?

「ネストされた DataGridColumn」クラスの作成に関する多くの記事を見ました...次のように:

http://active.tutsplus.com/tutorials/flex/working-with-the-flex-datagrid-and-nested-data-structures/

それは役に立ちますが、私のデータの問題は、一部のインデックス (apple1、apple2 など) が動的であることです。それらを含めるにはどうすればよいですか?

4

2 に答える 2

1

私はこれを機能させました。

インライン アイテム レンダラーを使用し、foreach ループを使用して、動的にネストされたオブジェクトを含むオブジェクトをループ処理しました。これは私のコードです:

<mx:DataGridColumn headerText="Roles Assigned">
<mx:itemRenderer>
<fx:Component>
    <mx:VBox creationComplete="box1_creationCompleteHandler()">
    <fx:Script>
    <![CDATA[
        import com.pm.modules.events.UpdateDBEvent;     
        import mx.containers.HBox;
        import mx.controls.Alert;
        import mx.controls.Label;
        import mx.controls.LinkButton;
        import mx.events.FlexEvent;     

        protected function box1_creationCompleteHandler():void
        {
        for each(var temp:Object in data.roles){
            var hgrp:HBox = new HBox();
            hgrp.autoLayout = false;
            var lbl:Label = new Label();
            lbl.text = temp.rname;
            var lb:LinkButton = new LinkButton();
            lb.label = 'X';
            lb.id = temp.rid.toString();
            lb.focusEnabled = true;
            lb.addEventListener(MouseEvent.CLICK,handleClick);

            hgrp.addElement(lbl);
            hgrp.addElement(lb);
            this.addElement(hgrp);
        }
    }

    protected function handleClick(event:MouseEvent):void{
      dispatchEvent(new UpdateDBEvent(UpdateDBEvent.ON_DELETE_PRIVILEGE_ROLE_MAP,0,0,0,event.target.id,0,true));
    }
]]>
</fx:Script>
</mx:VBox>
</fx:Component></mx:itemRenderer></mx:DataGridColumn>
于 2011-05-24T06:46:08.450 に答える
0

どのサーバー側テクノロジーを使用していますか? BlazeDs / amfphp、何か他のもの?

あなたがすべきことは、りんごを ArrayCollection にラップすることです。そうすれば問題ありません。

[0]->RPC Result
 [one] => 1
 [two] => 1
 [three] => ArrayCollection
     [1] = > Apple#3
          [color] => red
          [rate] => 20
     [2] => Apple #4 ( the number of apples is dynamic, apple3,apple4 .. and so on)
          [color] => blue
          [rate] => 100
于 2011-05-19T12:22:54.137 に答える