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 c

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 w

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 do

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

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 ab

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 PROT