Flex:如何将数据链接到数据网格?

时间:2010-06-09 16:41:34

标签: flex datagrid flex4 flash-builder

我正在关注flex教程,但我并没有像他们那样做,所以:

我想要什么

我有一个输入文字,带有“搜索”按钮。

我希望点击此按钮时,功能搜索返回的数据会显示在数据网格中。

我有什么:

文字输入:

<s:TextInput includeIn="DetailServeurs" x="58" y="361" width="209" id="txt_search" text="Default text" focusIn="txt_search_focusInHandler(event)"/>

搜索按钮:

<s:Button includeIn="DetailServeurs" x="275" y="361" label="Rechercher" id="btn_rechercher" click="btn_rechercher_clickHandler(event)"/>

此搜索按钮的点击处理程序:

protected function btn_rechercher_clickHandler(event:MouseEvent):void
        {
            if(txt_search.text != ""){
                getServeurByNameResult.token = serveurService.getServeurByName(txt_search.text);
            }
        }

和datagrid:

<mx:DataGrid includeIn="DetailServeurs" x="30" y="124" width="1002" height="179" id="dataGrid" dataProvider="{getServeurByNameResult.lastResult}">
    <mx:columns>
        <mx:DataGridColumn headerText="GSP_nom" dataField="GSP_nom"/>
        <mx:DataGridColumn headerText="port" dataField="port"/>
               ........
    </mx:columns>
</mx:DataGrid>

那么如何在datagrid中显示结果?谢谢 ! ;)

1 个答案:

答案 0 :(得分:0)

问题解决了。我无法确切地告诉你为什么,但我得到了帮助。