|
A DataGrid only creates enough rows to
fill out its height. For example, if you have 1000 items in your dataProvider
and the height of the DataGrid only allows you to see 10 of them, then it only
creates 10 rows and it "recycles" them with new data as you scroll.
This is how it can scroll through a huge data set. Therefore, you can't get a "whole
column of data" out of a DataGridColumn. The whole data -- all the items
-- is only in the dataProvider, and each column simply has info -- such as the
labelFunction -- that tells the DataGrid how to display the visible items. - Gordon From: [email protected]
[mailto:[EMAIL PROTECTED] On Behalf
Of Tim Hoff Mike, The
DataGrid columns object is an array of DataGridColumn objects. I
suppose that you could drill-down to get the DataGridColumn data objects for
calculation, but using the dataProvider is the way that I've found to be
easiest and most direct. -TH Tim Hoff
-- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___ |
RE: [flexcoders] Re: Looping through a DataGrid, in order to get Grand Total from 1 specific Column?
- RE: [flexcoders] Re: Looping through a DataGrid, in order to... Gordon Smith

