0

闪存生成器:

如何从 datagrid spark 的第一行的字段中获取数据?我想在屏幕上打印它们。

我从 Flash Builder 开始,搜索了很多信息,但找不到。我将非常感谢这些信息

4

1 回答 1

0

您通常通过它的dataProvider属性将数据提供给数据网格,该属性被键入为接口IList。该IList接口定义了一个名为getItemAt()的方法,您可以使用该方法从指定的数组索引中检索项目。

最常见的IList实现是ArrayCollectionArrayListXMLListCollection。假设您已经创建了这些集合之一,然后您可以执行以下操作:

// note the type of 'item' can be whatever class you're storing in the array
// it doesn't have to be 'Object'
var item:Object = myCollection.getItemAt(0);

如果您需要更多帮助,则需要显示您正在使用的代码。

于 2013-06-28T16:53:27.173 回答