Re: JavaScript onChange after onClick

2008-07-20 Thread Timo Rantalaiho
Hello, Great that you could solve your issue, but I'll comment on a couple of things anyway. On Wed, 16 Jul 2008, cretzel wrote: We are doing validation via Ajax, so we decided to not to validate on each key press because of performance issues. Have you proved empirically (load testing,

Re: Wicket 1.4M3 migration

2008-07-20 Thread Timo Rantalaiho
On Fri, 18 Jul 2008, Stefan Lindner wrote: Thank you all for your work on wicket! Maybe we can see Wicket 1.4.0 final in the near future? Thanks for the feedback and the thanks! There are still 30+ open issues for 1.4

modal window navigation?

2008-07-20 Thread Ryan McKinley
Hello- I'm using a Page within a modal window and when the user clicks an 'OK' button, I want to refresh the whole page (not the modal window). I've tried a few variations of: form.add( new AjaxButton(actionSave) { @Override protected void onSubmit(AjaxRequestTarget

Re: modal window navigation?

2008-07-20 Thread Igor Vaynberg
you want to refresh the page that contains the modal window? in that case you will have to do something like: onsubmit(ajaxrequesttarget target) { target.appendjavascript(window.top.location=+urlfor(Explorepage.class, null)); } -igor On Sat, Jul 19, 2008 at 11:19 PM, Ryan McKinley [EMAIL

Re: users, please give us your opinion: what is your take on generics with Wicket

2008-07-20 Thread Andras Hatvani
Hello, my answers to the questions: 1) Generifying* Wicket [X ] Can best be done like currently in the 1.4 branch, where models and components are both generified. I care most about the improved static type checking generified models and components give Wicket. 2) How strongly do you feel

Re: modal window navigation?

2008-07-20 Thread Ladislav Thon
Hello, I'm using a Page within a modal window and when the user clicks an 'OK' button, I want to refresh the whole page (not the modal window). I've tried a few variations of: form.add( new AjaxButton(actionSave) { @Override protected void onSubmit(AjaxRequestTarget target,

Re: modal window navigation?

2008-07-20 Thread Maurice Marrink
For extra credit... what is the easiest way to make the modal window background darker? Do I need to extend the modal window and include a different CSS file? what is the best practice for this kind of thing? thanks! ryan Making the background darker is a bit tricky but it can be done in

Re: Running a huge wicket site(1m + users)

2008-07-20 Thread Michael Allan
We are having the potential fun of running a site with around 1 million users, and a lot more over time. What could be great optimizing points? Don't bother guessing. Attach a good profiler and discover where the bottlenecks *actually* are. Then fix them, one by one. (Afterwards, tell us

Re: Running a huge wicket site(1m + users)

2008-07-20 Thread Andras Hatvani
Hello, as of my experience there are two performance areas: - page/page part rendering performance - garbage collection and custom algorithms. - page delivery performance - caching. Regarding the former one: - custom algorithms: By these I mean all software pieces implemented on request of the