更改 AdvancedDataGrid 中的组标签

发布于 2024-11-03 18:51:51 字数 698 浏览 3 评论 0原文

我正在尝试使用 AdvancedDataGrid 来显示一些分组数据。通常,flex 将其显示在“树视图”中,并带有代表该组的文件夹图标。我需要根据对象中的整数 ID 字段对数据进行分组,但我希望文件夹图标的标签显示对象中的 groupName 字段。

这是一个小例子:

{groupName: group1, ID: 1234}
{groupName: group2, ID: 5678}                                           

<mx:grouping>
    <mx:Grouping label="Group"> <--- The label of the whole column
      <mx:GroupingField name="ID">
    </mx:Grouping>
</mx:grouping>

结果输出:

=== Group ===
+ 1234
  - child
  - child
+ 5678
  ...

但我真的很想输出:

=== Group ===
+ group1
  - child
  - child
+ group2
  ...

如果有人有任何提示,我将不胜感激。

——丹

I'm trying to use an AdvancedDataGrid to display some grouped data. Normally flex displays this in a "tree view" with a folder icon represent the group. I need to group the data based on an integer ID field in my object, but I'd like the label for the folder icon to display the groupName field in my object.

Here's a little example:

{groupName: group1, ID: 1234}
{groupName: group2, ID: 5678}                                           

<mx:grouping>
    <mx:Grouping label="Group"> <--- The label of the whole column
      <mx:GroupingField name="ID">
    </mx:Grouping>
</mx:grouping>

Resulting output:

=== Group ===
+ 1234
  - child
  - child
+ 5678
  ...

But I'd really like to output:

=== Group ===
+ group1
  - child
  - child
+ group2
  ...

If anyone has any tips I'd appreciate it.

-- Dan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云不回头 2024-11-10 18:51:51

看看 GroupingField#groupingFunction。来自 adobe 文档

确定该组标签的函数。默认情况下,该组显示数据中与 name 属性指定的字段相匹配的字段文本。但是,有时您希望根据数据中的多个字段对项目进行分组,或者根据非简单字符串字段的内容进行分组。在这种情况下,您可以使用 groupingFunction 属性指定回调函数。

 private function myGroupingFunction(value:Object, field:GroupingField):String

Have a look at GroupingField#groupingFunction. From the adobe docs:

A function that determines the label for this group. By default, the group displays the text for the field in the data that matches the filed specified by the name property. However, sometimes you want to group the items based on more than one field in the data, or group based on something that is not a simple String field. In such a case, you specify a callback function by using the groupingFunction property.

 private function myGroupingFunction(value:Object, field:GroupingField):String
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文