Re: Import Validation using wicket

2007-08-14 Thread Eelco Hillenius
I saw that example, But I am not able to understand fully. Pls explain. When you do: new TextField(foo, model, Integer.class); then Wicket will check that input can safely be converted to an integer. With the current version of Wicket, you don't even need to provide the Integer argument if

Re: nuke the sourceforge lists!

2007-08-14 Thread Maurice Marrink
Please remove the users, or at least me from the sourceforge lists :) Maurice On 8/13/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Hey Martijn, others, Can we go ahead and remove all users from the sourceforge lists and make sure no-one can every subscribe again? Or is there a better way?

Re: nuke the sourceforge lists!

2007-08-14 Thread C. Bergström
Maurice Marrink wrote: Please remove the users, or at least me from the sourceforge lists :) Per the headers for anyone interested.. mailto:[EMAIL PROTECTED] I think hitting reply all to this email should work.. ./C - To

Re: Real example on Wicket

2007-08-14 Thread Favio
On Tuesday 14 August 2007 12:14, Mathias P.W Nilsson wrote: Thanks! I've check out the project in Eclipse but there are error messages all over the place. They mostly consist of M2_REPO error. Is this maven 2? How can I bypass this? try mvn -Declipse.workspace=workspace

Re: sharing a context menu across components

2007-08-14 Thread Kirk Israel
So I haven't found what setup would provide a reference to the Behavior to the AjaxFallbackLink. Is the problem in how I'm relying on overloading the page's document.oncontextmenu to handle the right click event, and I should be using something else? As a workaround, is there any available

Re: Real example on Wicket

2007-08-14 Thread Mathias P.W Nilsson
Thanks you but the errors still remain :( -- View this message in context: http://www.nabble.com/Real-example-on-Wicket-tf4257796.html#a12147865 Sent from the Wicket - User mailing list archive at Nabble.com. - To

Re: Ideas for a Wicket Based Cms

2007-08-14 Thread Martijn Dashorst
Take a look at the kronos CMS first (wicketstuff), and possibly Tally-Ho (java.net). Martijn On 8/14/07, james yong [EMAIL PROTECTED] wrote: Hi all, I have plans to work on a new open sourced CMS that would also be useful to others. It will be based on wicket. Some ideas for the 1st

Re: Real example on Wicket

2007-08-14 Thread Mathias P.W Nilsson
If finally got it to work. Problem with Maven since it totally new to me. Got it running now :jumping: Thanks! -- View this message in context: http://www.nabble.com/Real-example-on-Wicket-tf4257796.html#a12148908 Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Replacing panels inside a ModalWindow

2007-08-14 Thread al que
Matej, while making the quickstart i realized the problem was do to a css style i did not see that was hiddeing the content. Sorry for the noise and thanks for the help. Alina. --- Matej Knopp [EMAIL PROTECTED] escribió: I need a quickstart that can be use to reproduce the problem to

Re: setResponsePage redirects to wrong url

2007-08-14 Thread Al Maw
Andrew Klochkov wrote: Andrew Klochkov wrote: When I do setResponsePage(MyHomePage.class) IE tries to show me my.site.com/./ url and gets 404 response. Firefox just shows my.site.com without any troubles. I'm using wicket 1.3-beta2 and WicketFilter mapped to /*. Is it a known bug? Is there a

Re: Ideas for a Wicket Based Cms

2007-08-14 Thread Eelco Hillenius
two extra points: *) think about bookmarkability/ nice URLs. *) try to make the user-facing side (so the result of what people did with the CMS/ anything that can be accessed without logging in) stateless if you can. Eelco On 8/14/07, Eelco Hillenius [EMAIL PROTECTED] wrote: 1) It will use

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-14 Thread Eelco Hillenius
On 8/14/07, Alex Objelean [EMAIL PROTECTED] wrote: In wicket-1.2.6 I used this in order to not serialize session attributes: [CODE] getDebugSettings().setSerializeSessionAttributes(false); [/CODE] What is equivalent for this in wicket-1.3.0-beta2? Thank you! There is none, but if you

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-14 Thread Eelco Hillenius
On 8/14/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 8/14/07, Alex Objelean [EMAIL PROTECTED] wrote: In wicket-1.2.6 I used this in order to not serialize session attributes: [CODE] getDebugSettings().setSerializeSessionAttributes(false); [/CODE] What is equivalent for this in

AJAX Frozen

2007-08-14 Thread andrea pantaleoni
Hi, I have few pages with a lot of ajax behaviors. When an ajax error occurs al the others ajax behaviors are frozen. Even you cannot close a ModalWindow if that happens and the user have to reload the page There some workaround for that. Any help? Thanks -- View this message in context:

Re: TextField onclick ajax

2007-08-14 Thread Gerolf Seitz
to submit the form via ajax, you should use AjaxFormSubmitBehavior. gerolf On 8/14/07, andrea pantaleoni [EMAIL PROTECTED] wrote: Hi, In a Page I have a TextField component and few DropDownChoice inside a form. When I add a behaviour to the DropDownChoice I can read the value the user

TreeTable question

2007-08-14 Thread Doug Leeper
I am using the Tree Table component in Wicket Extensions. I would like to do the following: Background: I have N number of columns: Column 1: operation panel (operations available for the particular tree node item) Column 2: the tree node Column 3-N: attributes about the tree node item I

Re: Client Timezone in ClientProperties

2007-08-14 Thread Eelco Hillenius
I see that there is a method called getTimezone() on the ClientProperties object. The javadoc for it says Get the client's time zone if that could be detected. I tried to get this property, by submitting request from various browsers on various platforms, but it always returns null. Can