yes I have the same approach. You just re-use the views in a kind of view-pooling and thats it. It is just not that easy to make a geneal component. The way the result-set of your datasource is kind of strict to the way the table needs it. And you cannot re-size the hole grid/table cause you would need to realculate the visible area and the number of views in the pool.
sebastian 2009/11/25 Johannes Boesl <[email protected]> > > My app used a custom table, too. My table implementation used text-views > for each cell and reused those views on scrolling. So when you scrolled 10 > lines down the top ten lines where removed and appended in the end. It > worked okay but a rendering approach might be better I could imagine. I > think this is the same method the current table uses when the data is lazily > replicated. > -- Sebastian Wagner http://www.webbase-design.de http://openmeetings.googlecode.com http://www.laszlo-forum.de [email protected]
