Scott Lanham wrote: > data sets in TableView ( but throwing huge globs of data at it is a data > control issue not a UI issue ). By making sure I didn't load data using the > UI > thread the app is nice to use even when under allot of stress. > > Hmmm, The Eclipse JFace/SWT project has a nice solution here, one that may be worth copying - their table has an SWT.Virtual mode where it treats the row-set-data like a virtual memory resource, only loading in the bits it needs when they are needed for display.
It is different from the normal Table mode in that it has some limitations that come from not being able to iterate over the whole row-set, but the bonus is that is can cope with very large amounts of rows. -- Noel Grandin
