Re: Detachable confusion

2008-05-25 Thread Maurice Marrink
Typically when using DataTables you let the IDataProvider use your dao. to return an iterator over the objects (users in this case) When you use SortableDataProvider You need to provide an ISortState. SingleSortState is a very basic implementation of this, you could build your own by wrapping a ma

Detachable confusion

2008-05-23 Thread David Nedrow
Assume the following... v @Entity @Table(name = "user", catalog = "blah") public class User implements java.io.Serializable { private Long id; private String name; // getters/setters for both } public interface IUserDA