2013-06-28 50 views

回答

0

您通常通過它的dataProvider屬性將數據提供給數據網格,該屬性被鍵入爲接口IListIList接口定義了一個名爲getItemAt()的方法,您可以使用該方法從指定的數組索引檢索項目。

最常見的IList實施方案是ArrayCollection,ArrayListXMLListCollection。假設你已經創建了這些藏品之一,那麼你可以做這樣的事情:

// 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); 

如果你需要比這更多的幫助,你需要證明你正在使用的代碼。

+0

蘇尼爾,工作完美!非常感謝! – user2530802

相關問題