Hi,
In my app, I have several databound components that use a common datasource, plus several custom components which work based on the same data.
For various reasons, I have to load all the data to the client when the app starts (or at least when it's first needed).
Furthermore, some listGrids can do filtering, but when this happens,
- I do not want to "forget" the data that gets filtered out, and
- the other components should not be influenced by the criteria.
Furthermore, this data is dynamic; some of the databound components can make modifications, and when this happens,
- the data should be sent back the server side, as usual
- all components should see the modified data.
* * *
What would be the optimal data catching/storage approach here?
(Should I use a ResultSet? Multiple ResultSets Something else?)
Thank you for your help!
In my app, I have several databound components that use a common datasource, plus several custom components which work based on the same data.
For various reasons, I have to load all the data to the client when the app starts (or at least when it's first needed).
Furthermore, some listGrids can do filtering, but when this happens,
- I do not want to "forget" the data that gets filtered out, and
- the other components should not be influenced by the criteria.
Furthermore, this data is dynamic; some of the databound components can make modifications, and when this happens,
- the data should be sent back the server side, as usual
- all components should see the modified data.
* * *
What would be the optimal data catching/storage approach here?
(Should I use a ResultSet? Multiple ResultSets Something else?)
Thank you for your help!
Comment