2010-09-24 1 views
0
<mx:DataGrid id="grid" width="100%" height="100%" sortableColumns="true" 
      itemClick.ordersState="{_selectedOrder=grid.selectedItem.ordersState}" 
      selectable.ordersState="true" includeIn="locationsState, ordersState" > 
    <mx:columns > 
     <mx:DataGridColumn dataField="name" headerText="Name" includeIn="locationsState"/> ->ex Location grid 
     <mx:DataGridColumn dataField="locationTypeName" headerText="Type" includeIn="locationsState" /> ->ex Location grid 
     <mx:DataGridColumn dataField="uid" headerText="Number" includeIn="ordersState" /> ->ex Orders grid 
     <mx:DataGridColumn headerText="Order #" dataField="orderId" includeIn="ordersState"/> ->ex Orders grid 
     <mx:DataGridColumn headerText="Status" dataField="orderStatus" includeIn="ordersState"/> ->ex Orders grid 
     <mx:DataGridColumn dataField="customerName" headerText="Customer" includeIn="ordersState" /> ->ex Orders grid 
    </mx:columns> 
</mx:DataGrid> 

и измененные поставщики, как этотОбъединить 2 DataGrids в один с состояниями

private function _ws_result_order(e:ResultEvent):void 
{ 
    grid.dataProvider.ordersState = e.result; 
} 

private function _ws_result(e:ResultEvent):void 
{ 
    grid.dataProvider.locationsState = e.result; 
} 

Я получаю сообщение об ошибке:

The children of Halo navigators must implement INavigatorContent. ReceiveIn.mxml /work/src/ui/fragments line 332 Flex Problem

ответ

1

Похоже, вы использовали ViewStack или TabNavigator.

В этом случае вам необходимо выполнить одно из следующих действий: (т. Е, обернуть DataGrid внутри Canvas)

<ViewStack> 
    <Canvas> 
     <DataGrid /> 
    </Canvas> 
</Viewtack> 

или

<Viewstack> 
    <NavigatorContent> 
      <Group> 
       <DataGrid /> 
      </Group> 
     </NavigatorContent> 
</Viewstack> 

(то есть. , оберните свой DataGrid в группу и группу внутри тега NavigatorContent.)

Примечание. Подход - это то же самое с навигатором вкладок.

 Смежные вопросы

  • Нет связанных вопросов^_^