GWT MVP with a table
- by Benju
When working with MVP in GWT how would you work with a table? For example if you had a table of users does your view look like this?
public interface MyDisplay{
HasValue<User> users();
}
or would it be more like this?
public interface MyDisplay{
HasValue<TableRow> rows();
}
MVP makes a ton of sense until you start dealing with widgets that need to display lists of non-primitive data. Can anybody shed some light?
This mailing list archive appears to ask the same question but never reaches a solid resolution...
http://www.mail-archive.com/[email protected]/msg24546.html