RE: [flexcoders] How to create Pageable RecordSets in DataGrid?

2006-10-11 Thread Mike Anderson
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of EECOLORSent: Tuesday, October 10, 2006 2:32 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] How to create Pageable RecordSets in DataGrid? Hello, you could put the whole dataprovider into the grid and hide the scrollbar

Re: [flexcoders] How to create Pageable RecordSets in DataGrid?

2006-10-10 Thread EECOLOR
Hello, you could put the whole dataprovider into the grid and hide the scrollbar. Then provider your own controls for setting the scroll position. I think that would give you the best results. Behind the screens the datagrid will render only the visible entries, so its actually allready doing

RE: [flexcoders] How to create Pageable RecordSets in DataGrid?

2006-10-10 Thread Matt Chotin
This gives an example for Flex 1.5 (which is not the same as Flex 2). http://weblogs.macromedia.com/mchotin/archives/2004/03/large_data_sets.cfm. Look at this implementation and see how you might adjust the ArrayCollection or something like it to meet your needs. At the same time,