Re: resource (css) loading

2010-04-11 Thread sahar rostami
Thanks so much dear apple grew! Regards On Sun, Apr 11, 2010 at 9:49 AM, Apple Grew appleg...@gmail.com wrote: Maybe it was stripped by Wicket Mailing list. Anyway I will paste the code in the mail itself. Regards, Apple Grew my blog @ http://blog.applegrew.com/ --Code Starts-- /**

How to pass object as parameter to popup window

2010-04-11 Thread l yeung
Hi All, I'm fairly new to Wicket, so forgive me if my question sound silly. I've implemented a preview window by using bookmarkable page link and popup settings, very similar to Linkomatic from wicket examples:

Re: resource (css) loading

2010-04-11 Thread Apple Grew
u r welcome. Regards, Apple Grew my blog @ http://blog.applegrew.com/ On Sun, Apr 11, 2010 at 11:48 AM, sahar rostami sahar.rost...@gmail.comwrote: Thanks so much dear apple grew! Regards On Sun, Apr 11, 2010 at 9:49 AM, Apple Grew appleg...@gmail.com wrote: Maybe it was stripped by

Re: FormTester with dynamic fields

2010-04-11 Thread Kent Tong
Anna Simbirtsev wrote: There is also an ADD MORE button, that adds more of those on the page. ... But that does not work. If it is an AjaxButton, then WicketTester will not execute the Javascript. To test the effects as seen in the browser, you may try

problem with WicketTester to load template

2010-04-11 Thread Gustavo Henrique
hi guys! I have been a problem using WicktTester. When I run a simple test, wicket throws an exception because can't load the template html. But if I access page via browser, wicket works fine. the source code: CustomerApplicationTest.java http://pastebin.com/tRJ9hNuk Example.java

How do I provide digit-only IDs to make childs safe?

2010-04-11 Thread Alexandros Karypidis
Hi, I'm a new Wicket user who is also getting familiar with the GMap2 module from wicket-stuff. I'm using the geocode example as a basis for creating a form which allows you to search for a location and set the map viewport to display it:

Re: problem with WicketTester to load template

2010-04-11 Thread Per Newgro
When I run a simple test, wicket throws an exception because can't load the template html. Do you have a stacktrace? Cheers Per - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

How to centrally handle common exceptions from the databsae layer?

2010-04-11 Thread David Chang
I am hoping to understand how to write a good wicket app regarding handling exceptions from the databsae layer? For a wickt form, I can have the following to handle user submission: @Override protected void onSubmit() { User u = getModelObject(); userDao.saveUser(u);

Scalability

2010-04-11 Thread François Meillet
Hi Wicketers, 1) I need to build a system which can perform -6000 different users per day and -200 concurent users The software used: wicket postgresql (mainly read operations) hibernate jms At the beginning there will be 2 computers (I prefer horizontal scalability). What would be your

Re: Scalability

2010-04-11 Thread Eelco Hillenius
2010/4/11 François Meillet fm...@meillet.com: Hi Wicketers, 1) I need to build a system which can perform -6000 different users per day and -200 concurent users I can very easily run that on my laptop. The software used: wicket postgresql (mainly read operations) hibernate jms At

Re: Recover from session expiration ?

2010-04-11 Thread mbrictson
Have you seen jolira-tools? It was mentioned here on the mailing list recently. I haven't used it, but it seems to have some components that are intended solve the type of stateless ajax problem you are having. http://code.google.com/p/jolira-tools/wiki/stateless Boris Goldowsky-3 wrote: I

Re: Recover from session expiration ?

2010-04-11 Thread mbrictson
Another option: include an AjaxSelfUpdatingTimerBehavior on your page; this will keep your session from expiring. Boris Goldowsky-3 wrote: I have a wicket website that stores some user choices around how a page is displayed in the Session - simple, non-critical information. It also uses

Re: How do I provide digit-only IDs to make childs safe?

2010-04-11 Thread Sven Meier
Hi Alexandros, it's just that the example uses the location's name as an id for a label shown as content in a GInfoWindowTab. See the following line in the example: new GInfoWindowTab(address, new Label(*address*, address)) The label will end up inside a repeater which is complaining about

Re: Wicket and JEE6

2010-04-11 Thread Erik Brakkee
Just have a look at https://wamblee.org/svn/public/wicket-cdi The main thing I did was to make the injection and caching stuff completely independent of wicket and I made some arrangements to still allow unit tests where you can inject different things from the defaults. In particular, I think

Re: Wicket and JEE6

2010-04-11 Thread James Carman
I would imagine that most implementations would cache their injectors (it's part of the BeanT) On Sun, Apr 11, 2010 at 4:30 PM, Erik Brakkee erik.brak...@gmail.com wrote: Just have a look at https://wamblee.org/svn/public/wicket-cdi The main thing I did was to make the injection and caching

RE: Scalability

2010-04-11 Thread Chris Colman
I hesitate between the 2 solutions, as I don't need EJBs, but we never know !!! . If you have an app that currently doesn't need EJBs then keep it that way!! ;) - To unsubscribe, e-mail:

Re: How to pass object as parameter to popup window

2010-04-11 Thread Mathias Nilsson
Session or pageParameters -- View this message in context: http://old.nabble.com/How-to-pass-object-as-parameter-to-popup-window-tp28207456p28212525.html Sent from the Wicket - User mailing list archive at Nabble.com. - To

RE: Scalability

2010-04-11 Thread Alan Garfield
On Mon, 2010-04-12 at 08:31 +1000, Chris Colman wrote: I hesitate between the 2 solutions, as I don't need EJBs, but we never know !!! . If you have an app that currently doesn't need EJBs then keep it that way!! ;) More EJB FUD yay

Re: Any mature work on integrating Hibernate Validator with Wicket?

2010-04-11 Thread Ben Tilford
If you find anything useful heres some stuff I have put together https://docs.google.com/leaf?id=0ByQjVcAVDuP9MWE4NDcxODMtODZlOC00Mzk0LThhOTUtYmI2MmNlYzEwNWFihl=en I'd upload it somewhere else but it looks like there are already like 4 different projects for this. 2010/4/10 Uwe Schäfer