Re: quick page model question

2011-01-04 Thread gnugrf
) { e.printStackTrace(); } return client; } } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/quick-page-model-question-tp3172678p3173721.html Sent from the Users forum mailing list archive at Nabble.com

Re: quick page model question

2011-01-04 Thread Jeremy Thomerson
On Tue, Jan 4, 2011 at 9:18 AM, gnugrf gnu...@sdf.lonestar.org wrote: I set a breakpoint within the load() and when the page first gets constructed I am able to watch the code get executed. When I refresh, the listview on the page (which uses a different LDM) does get called again, however

Re: quick page model question

2011-01-04 Thread gnugrf
inherited from an abstract class? I would assume setting it on the detach method in the abstract class. Isnt this going to make execution stop every time ANY ldm detaches? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/quick-page-model-question-tp3172678p3173857

Re: quick page model question

2011-01-04 Thread Jeremy Thomerson
On Tue, Jan 4, 2011 at 10:28 AM, gnugrf gnu...@sdf.lonestar.org wrote: Jeremy thanks for your patience, I have a couple of questions about your replies. 1. If my constructors for the page are public ManageClientPage(long id){this(new ClientLDM(id));} public

Re: quick page model question

2011-01-04 Thread gnugrf
with dynamic models e.g propertymodels referencing the page model. You saved me weeks of searching and I can't tell you how much I appreciate the time you took helping me. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/quick-page-model-question-tp3172678p3174289.html Sent

Re: quick page model question

2011-01-04 Thread Jeremy Thomerson
On Tue, Jan 4, 2011 at 2:10 PM, gnugrf gnu...@sdf.lonestar.org wrote: Thanks a million man! I wasn't calling super(model) and after figuring out how to attach sources (which I hadn't known about), I was able to see that the page model was being detached and refreshed. Great! The labels

quick page model question

2011-01-03 Thread gnugrf
how do you get the page model to refresh when a user presses reload or F5? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/quick-page-model-question-tp3172678p3172678.html Sent from the Users forum mailing list archive at Nabble.com

Re: quick page model question

2011-01-03 Thread Martin Makundi
.n4.nabble.com/quick-page-model-question-tp3172678p3172678.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: quick page model question

2011-01-03 Thread gnugrf
ManageClientPage(IModelClient client) { ///code here} and its being called using id. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/quick-page-model-question-tp3172678p3172797.html Sent from the Users forum mailing list archive at Nabble.com

Re: quick page model question

2011-01-03 Thread Jeremy Thomerson
On Mon, Jan 3, 2011 at 5:00 PM, gnugrf gnu...@sdf.lonestar.org wrote: I'm pretty much a noob, even though I've been slowly working on a project for about a year so bear with me. I've read understanding models a couple dozen times already and lifecycle, requestcycle, etc. and did a fair amount