Re: CellTable MVP

2011-01-17 Thread rlhawk1
Thank you so much! Using what you said I was able to get it working in just a few minutes. I'm using your sample project to help arrange some other stuff better as well. I probably need to work on my event handling rather than just using History.newItem(), but here's the code I have in my presen

Re: CellTable MVP

2011-01-15 Thread David Chandler
Hi Raymond, I've taken a stab at this in the listwidget sample project. I wanted the view screen to be its own Place for bookmarking, so I created a HyperlinkCell and use utility methods in RequestFactory and PlaceHistoryMapper to create a URL from an ID / Place. Here's the relevant code from List

CellTable MVP

2011-01-14 Thread rlhawk1
I'm trying to create a CellTable where when you click on a row, it goes to another screen, and I'm trying to keep a correct MVP architecture. I have two questions. First, do I initialize my CellTable in the view, or the presenter? Right now I have something like this in my view code, but with mo