When working with MVP in GWT, how will you work with the table? For example, if you have a user table, does your view look like this?
public interface MyDisplay{ HasValue<User> users(); }
or will it be more like?
public interface MyDisplay{ HasValue<TableRow> rows(); }
MVP makes a ton until you begin to deal with widgets that need to display lists of non-primitive data. Can anyone shed some light?
This mailing list archive seems to ask the same question, but never reaches a solid resolution ...
http://www.mail-archive.com/ google-web-toolkit@googlegroups.com /msg24546.html
mvp gwt
benstpierre
source share