1

我在 flex (flash builder 4) 中有一个高级数据网格。它的 dataProvider 指向一个 ArrayCollection (this._encounters)。

该数组集合内部是一个作为对象(客户端对象)的属性。

我尝试将 dataField 设置为“clientObj.firstName”以引用 this._encounters 数组集合的 clientObj 属性中的名字属性。它没有显示任何东西。

因此,我在该列(下面的代码)中添加了一个 labelFunction 来设置单元格中的文本。这工作正常,现在我在网格中显示了值。

现在的问题是当我单击列的标题对其进行排序时。在我的数组集合中找不到属性 clientObj.firstName 会引发错误!

那么,有没有更好的方法来设置列的数据字段/源并指向子对象中的属性——或者修复排序的方法?

在第一列下方

<mx:AdvancedDataGrid x="0" y="25" id="adgEncounters" designViewDataType="flat" width="100%" height="100%" dataProvider="{this._encounters}">
<mx:columns>
<mx:AdvancedDataGridColumn headerText="first" dataField="clientObj.firstName" labelFunction="encounterGridLabelFunct"/>
<mx:AdvancedDataGridColumn headerText="first" dataField="thisWorksField"/>
</mx:columns>
</mx:AdvancedDataGrid>



protected function encounterGridLabelFunct(item:Object, column:AdvancedDataGridColumn):String //put just the HH:MM in to the grid, not the whole date string
{
 if(column.headerText=="first") result=item.clientObj.firstName;    
 return result;
}           

更新:这是我使用的最终工作代码。3 个示例排序函数,1 个用于数字排序,1 个用于字符串排序,1 个用于日期排序(来自数据库的字符串日期):

// sort adg column numerically
            private function numericSortByField(subObjectName:String, fieldName:String):Function
            {
                return function(obj1:Object, obj2:Object):int
                {
                    var value1:Number = (obj1[subObjectName][fieldName] == '' || obj1[subObjectName][fieldName] == null) ? null : new Number(obj1[subObjectName][fieldName]);

                    var value2:Number = (obj2[subObjectName][fieldName] == '' || obj2[subObjectName][fieldName] == null) ? null : new Number(obj2[subObjectName][fieldName]);
                    return ObjectUtil.numericCompare(value1, value2);
                }
            }

            //sort adg column string
            private function stringSortByField(subObjectName:String, fieldName:String):Function
            {
                return function(obj1:Object, obj2:Object):int
                {
                    var value1:String = (obj1[subObjectName][fieldName] == '' || obj1[subObjectName][fieldName] == null) ? null : new String(obj1[subObjectName][fieldName]);

                    var value2:String = (obj2[subObjectName][fieldName] == '' || obj2[subObjectName][fieldName] == null) ? null : new String(obj2[subObjectName][fieldName]);
                    return ObjectUtil.stringCompare(value1, value2);
                }
            }

            //sort adg date diff (takes date strings for example from a db)
            private function dateSortByField(subObjectName:String, fieldName:String):Function
            {
                return function(obj1:Object, obj2:Object):int
                {
                    var value1:String = (obj1[subObjectName][fieldName] == '' || obj1[subObjectName][fieldName] == null) ? null : new String(obj1[subObjectName][fieldName]);

                    var value2:String = (obj2[subObjectName][fieldName] == '' || obj2[subObjectName][fieldName] == null) ? null : new String(obj2[subObjectName][fieldName]);

                    var value1Date:Date = new Date();
                    var value1Time:int = value1Date.setTime(Date.parse(value1));

                    var value2Date:Date = new Date();
                    var value2Time:int = value2Date.setTime(Date.parse(value2));


                    return ObjectUtil.numericCompare(value1Time, value2Time);
                }
            }

在上面的 mxml 中,这是更改的行 - 请注意添加的 stringSortByField:

        <mx:AdvancedDataGridColumn headerText="first" dataField="clientObj.firstName" sortCompareFunction="{stringSortByField('clientObj','firstName')}" labelFunction="encounterGridLabelFunct"/>

如果是数字字段,请使用 numericSortByField。如果它是来自数据库的日期字符串,请改用 dateSortByField 函数。

4

1 回答 1

1

您可以使用自定义比较函数,我就是这样做的(显然您的 itemA 和 itemB 将是不同的对象,因此将它们转换为这样):

在您的 AdvancedDataGridColumn 中输入:

sortCompareFunction="string_sortCompareFunc"

并制作函数:

private function string_sortCompareFunc(itemA:Object, itemB:Object):int 
        {
             var a:String = itemA as String;
             var b:String = itemB as String;              

             return ObjectUtil.stringCompare(a, b);
        }
于 2011-08-05T16:00:20.307 回答