Re: Page reloading notification

2011-03-08 Thread Zoltán Nagy
for any advice Milan - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Zoltán Nagy

TEST

2011-03-01 Thread Zoltán Nagy
(state 18). It seems to be something serious error with the mailing server if I could trigger the spam filter only with 2 sentences. -- Zoltán Nagy

Re: How to prevent user from double-clicking a non-Ajax component

2011-03-01 Thread Zoltán Nagy
component? When the submit occurs, isEnabled is set to false for the Wicket Button. If the user does a quick double click on the button, its throws a wicket runtime excpetion saying the component is disabled. Thanks -- Zoltán Nagy

Re: TEST

2011-03-01 Thread Zoltán Nagy
Thanks! I turn off formating. 2011/3/1 Martijn Dashorst martijn.dasho...@gmail.com HTML email raises the score pretty much. Martijn -- Zoltán Nagy - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Panel update after Ajax Submit

2011-03-01 Thread Zoltán Nagy
, the layout of the panel is destroyed. You should set it before you first send out the component (normal pageRender or in on ajax response). You can set it in the constructor or some time before Rendering. -- Zoltán Nagy

Re: Displaying table in a modalDialog

2011-03-01 Thread Zoltán Nagy
));         add(frmProject);     }     public ListUser getProjectUsers() {         return projectUsers;     }     public void setProjectUsers(ListUser projectUsers) {         this.projectUsers = projectUsers;     } } Any help will be appreciated. Josh. -- Zoltán Nagy

Re: Displaying table in a modalDialog

2011-03-01 Thread Zoltán Nagy
outside the table tag, it is displayed. Josh. -- Zoltán Nagy - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Displaying table in a modalDialog

2011-03-01 Thread Zoltán Nagy
to another tag in the markup, that can be skipped. -- Zoltán Nagy - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Typically when is the constructor of a component of a panel, page, etc called?

2011-02-24 Thread Zoltán Nagy
Hi! 2011/2/25 Brown, Berlin [GCG-PFS] berlin.br...@primerica.com I was trying to get a feel for the wicket lifecycle, I can where onBeforeRender, onAfterRender are called during the component rendering lifecycle. But, I still don't see when the constructor (object instantiation) of a