You don't have to have Spring to do this one table, it just makes it easier
to do many more like really fast in the future. It is more scalable.

The Dataview and ListView components are just the UI component(the view). So
your query won't have to change. The main thing that will change is how you
feed the data returned by your query to the view. So for ListView you are
either using a List or a IModel to feed it data. With a Dataview you will
have to implement IDataProvider to feed it data. 

If your query is handling pagination right now then you are good, however if
it isn't then here is something to consider. You can still have paging
without modifying the query but if you do that then that means the query
will return all records, and you will be filtering your results down inside
your java code. A lot of my Dataviews do that because the result sets are
small enough, however if you have very large result sets then you might
consider incorporating paging into your query.

Josh





--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Editing-list-in-Dataview-tp4650885p4651041.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to