0

我有一个 dataprovider,它是一个简单字符串值的 ArrayCollection。我需要先翻译这些字符串,然后再将它们呈现在我的数据网格中。我怎样才能做到这一点?

请注意,我不想将其复制到带有翻译值的新 ArrayCollection,因为我允许内联编辑来更新数据提供者源。

当前数据网格没有数据提供者中的值的翻译

<mx:DataGrid width="100%" height="100%" id="contactInfoGrid"
                                 dataProvider="{model.selectedCustomer.contacts}"
                                 editable="true" itemEditEnd="contactInfoChanged(event)">
                        <mx:columns>
                            <mx:DataGridColumn width="200" dataField="type" editable="false"
                                               headerText="{resourceManager.getString('customer','customer.contactInformation.type')}"/>
                            <mx:DataGridColumn width="300" dataField="value" editable="true"
                                               headerText="{resourceManager.getString('customer','customer.contactInformation.value')}"/>
                            <mx:DataGridColumn editable="false" headerText="{resourceManager.getString('customer','general.remove')}">
                                <mx:itemRenderer>
                                    <mx:Component>
                                        <mx:VBox horizontalAlign="center">
                                            <controls:RemoveLinkButton visible="true" label=""  click="outerDocument.removeContactInfo(event)"/>
                                        </mx:VBox>
                                    </mx:Component>
                                </mx:itemRenderer>
                            </mx:DataGridColumn> 
                        </mx:columns>
                    </mx:DataGrid>
4

1 回答 1

1

您将需要:

  • 翻译数据提供者本身的值。我不确定您是否要这样做,因为您将更改数据源。
  • 将标签函数添加到数据网格列并返回每个单元格的翻译文本
于 2013-08-13T09:24:02.493 回答