I am following a 'Issue tracking' gwt project with screenshots here:
http://code.google.com/p/gwt-mvp-sample/wiki/screenshots
This template code can show exactly one Issue
object with the IssueDisplayWidget
I need to allow the app to record many Issue
s (even just using in-memory List<>
class for testing). And allow the IssueDisplayWi开发者_JS百科dget
to show every Issue
added.
How could I achieve this?
You can use ListDataProvider to represent data and update table after each adding with EventBus or directly.
精彩评论