循环 AdvancedDataGrid 时出现问题

发布于 2024-10-02 03:44:55 字数 352 浏览 4 评论 0原文

我需要循环遍历 AdvancedDataGrid 的树。谁能给我解释一些事情吗?

这是我的代码:

var adg : AdvancedDataGrid;

var dp : GroupingCollection2 = adg.dataProvider;
var cursor:IViewCursor=dp.createCursor();

现在我的问题是我不知道如何从这里访问我的对象。我的 AdvancedDataGrid 有一个 GroupingCollection2 作为数据提供者,它以 XML 作为源,并且还按 XML 中的“Project_Name”字段进行分组。

有什么建议吗?

I need to loop through an AdvancedDataGrid's tree. Can anyone explain me some things?

This is my code:

var adg : AdvancedDataGrid;

var dp : GroupingCollection2 = adg.dataProvider;
var cursor:IViewCursor=dp.createCursor();

Now my issue is that I don't know how to access my objects from here. My AdvancedDataGrid has as dataprovider an GroupingCollection2 that has an XML as source, and also is grouped by "Project_Name" field from XML.

Any advice?

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

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

发布评论

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

评论(1

叫思念不要吵 2024-10-09 03:44:55

像这样的东西?

var dp:Object=MyDG.dataProvider;
var cursor:IViewCursor=dp.createCursor();

while( !cursor.afterLast )
{
// Access each column field like: cursor.current.MyFieldName
trace(cursor.current.MyFieldName);
// Obviously don't forget to move to next row:
cursor.moveNext();
}

来源

这也可能有用:http://help.adobe.com/en_US/FlashPlatform/reference/ actionscript/3/mx/collections/IViewCursor.html

此示例也可能有用:http://blog.flexexamples.com/2008/04/15/creating-a-view-cursor-on-an-arraycollection-in-弯曲/

something like this?

var dp:Object=MyDG.dataProvider;
var cursor:IViewCursor=dp.createCursor();

while( !cursor.afterLast )
{
// Access each column field like: cursor.current.MyFieldName
trace(cursor.current.MyFieldName);
// Obviously don't forget to move to next row:
cursor.moveNext();
}

source

This might also be useful: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/collections/IViewCursor.html

This example could also be useful: http://blog.flexexamples.com/2008/04/15/creating-a-view-cursor-on-an-arraycollection-in-flex/

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