1

我想在我的列表中有超过 1 个标签字段,它目前从数据库中提取,下面是我的代码:

<s:List id="list2" includeIn="hurlingprofile" x="0" y="63" width="480" height="687"
        color="#000000"     creationComplete="list2_creationCompleteHandler(event)" labelField="Name">
    <s:AsyncListView list="{getAllProfilehurlingResult.lastResult}"/>
</s:List>

我已经显示了所有的名字,但我需要显示所有的出生日期。

我尝试通过设计视图添加标签,但它们只有一个名称而不是列表中的所有名称。如何添加将显示在每个列表项中的标签。

4

1 回答 1

0

There are several approaches you can take:

  1. Use a DataGrid if you want to have multiple columns
  2. Use an inline or separate itemRenderer
  3. Use the itemRendererFunction property of List

For your use, I guess the inline itemRenderer will be good.

于 2013-05-09T15:12:45.933 回答