Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Igor Vaynberg
so make the homepage a subclass of RedirectPage that redirects to your struts home page.-IgorOn 5/16/06, Ittay Dror < [EMAIL PROTECTED]> wrote:i have an existing application built with struts, the wicket pages are (for now) embedded in other pages as tabs. so when the user first hits the applicatio

[Wicket-user] Google Java - Ajax Toolkit

2006-05-16 Thread Dorel Vaida
Hi again guys :-) .I'll surely look into how and if it can be integrated (or even if it's worth) with Wicket but I can bet that there are here on the list people that can emit much better opinions than mine. So ... please take a look and share your opinions: http://code.google.com/webtoolkit/

[Wicket-user] Re: How to write model for immutable compound value object?

2006-05-16 Thread Pekka Enberg
Hi Johan, At some point in time, Johan Compagner wrote: > > to combine the 2 as one value (because the can't et the min and max > > inside the IntegerRange object?) You could wrap the 2 text fields in a > > formcomponent and use only a MarkupContainer for those textfields (so > > not really textfi

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-16 Thread Ittay Dror
i have a similar use case. below is the code for a component i wrote. it is a markup container, so you can add components to it, which can be referenced from the html: public abstract class CompositeComponent extends FormComponent{ public CompositeComponent(String id) {

[Wicket-user] Re: How to write model for immutable compound value object?

2006-05-16 Thread Pekka Enberg
Hi Johan, (Please cc me as I am not subscribed to the list.) At some point in time, Johan Compagner wrote: > you could use a FormValidator to validate those 2 fields (as it was > one) Yeah, this I already have. At some point in time, Johan Compagner wrote: > to combine the 2 as one value (becau

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Alvar Lumberg
OK, so don't be too mad if my Estonian Application.properties files finally arrive in two copies :P On 5/16/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: Yes, I've got the same thing happening here /Gwyn On 16/05/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > yeah and now i am getting new ma

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
i have an existing application built with struts, the wicket pages are (for now) embedded in other pages as tabs. so when the user first hits the application he gets a struts homepage. Igor Vaynberg wrote: what do you mean there is no homepage? it is a page that the user comes to the first tim

[Wicket-user] Google Web Toolkit integration ?

2006-05-16 Thread smallufo
Google Web Toolkit - Build AJAX apps in the Java language released on 5/16/2006 http://code.google.com/webtoolkit/ It seems powerful and slick Anybody has any idea to integrate it to wicket ? --- Using Tomcat but need to do more? Need to supp

[Wicket-user] Wicket 1.2-rc4 available

2006-05-16 Thread Martijn Dashorst
Wicket 1.2-rc4 available The Wicket project has released the fourth release candidate of the 1.2 effort. We expect this to be the final candidate and if no serious bugs are found we will release 1.2 final later this week. This is our fourth release

Re: [Wicket-user] Global parameters in the html markup

2006-05-16 Thread Igor Vaynberg
this has been done before by users who wanted similar functionality. i believe you create a wicket tag handler that preprocesses the markup as it is loaded/cached into wicket. maybe someone who has done this can elaborate more. -IgorOn 5/14/06, Bruno Borges <[EMAIL PROTECTED]> wrote: I don't think

Re: [Wicket-user] Default Locale not working

2006-05-16 Thread Johan Compagner
There will be already a Wicket Session yes.But if you login then do session.setUser(user) and session.setLocale(databaseUserLocale)that should work fine. Is that a problem? On 5/12/06, Bruno Borges <[EMAIL PROTECTED]> wrote: Just one question:How to authenticate an user and right after that create

Re: [Wicket-user] URL redirect

2006-05-16 Thread Timo Stamm
Thomas, you are using a proxy, right? If you enter http://localhost:8080/foo/ in the browser, wicket redirects to http://localhost:8080/foo/?page=0 But with the proxy in between, the browser is redirected to http://localhost:8080/foo?page=0 I have experienced this problem with mod

[Wicket-user] Mounted pages and page parameters

2006-05-16 Thread Lusebrink, Scott E CTR DISA GIG-CS
Title: Mounted pages and page parameters page parameters are not behaving similar when using a mounted path versus the bookmarkable page url mounting a page to a url should not affect how parameters are passed in these 2 urls should both pass in the tsrNum parameter paws&wicket:bookmarkableP

Re: [Wicket-user] Custom component inheritance

2006-05-16 Thread Johan Compagner
but you did say that you want to add/customize the output by adding a textfield to it.That seems to me like inheritance.johanOn 5/13/06, smallufo <[EMAIL PROTECTED]> wrote:Yes , I thought of markup inheritance before. But I feel it doesn't meet my requirement.It seems that in 'markup inheritence' 

Re: [Wicket-user] Ajax Panel Include

2006-05-16 Thread Johan Compagner
then we really should fix it! :)IGOR!! come on fix it!johanOn 5/12/06, Martijn Dashorst < [EMAIL PROTECTED]> wrote:This is a problem facing all developers of Ajax components. Read a similar discussion here: http://www.nabble.com/Problem-loading-DatePicker-inside-Panel-through-AjaxLink-t1554862.html

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Johan Compagner
pong after 14 hoursOn 5/16/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: pingOn 5/15/06, Mark Derricutt < [EMAIL PROTECTED]> wrote: On 5/16/06, Frank Silbermann <[EMAIL PROTECTED]> wrote: I received an unusually low number of posts this weekend from the Wicketuser group, and none today.  Is the

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
how can i tell if a Page is bookmarkable or not? Johan Compagner wrote: What you could do is is something like this: override onComponentTag of Form do the super call and then do this: tag.put("action", abookmarkableurl); and then that bookmarkable url will be pointing to a page. That handles

[Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
if i have a page loaded in the browser and i relaunch the web server, and then submit the page, i get an exception: java.lang.IllegalArgumentException: Page class for bookmarkable link cannot be null at wicket.markup.html.link.BookmarkablePageLink.(BookmarkablePageLink.java:73) at wicket

Re: [Wicket-user] Wizard's Confirmation Page

2006-05-16 Thread Eelco Hillenius
Please take a look at the wizard example in wizard-examples. Basically, it works just like any other form/ panel, so you can use whatever tricks you want. Eelco On 5/16/06, Michael K <[EMAIL PROTECTED]> wrote: Hi, I 've been playing with the latest Wizard example this morning as well as wicke

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
great. thanx. Johan Compagner wrote: if it has one of the following constructors: default: () pageparameters: (PageParameters params) and you need ofcourse the second because else you can't get the form values. johan On 5/16/06, *Ittay Dror* <[EMAIL PROTECTED] >

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Martijn Dashorst
It has just been a slow weekend I guess.MartijnOn 5/16/06, Frank Silbermann <[EMAIL PROTECTED] > wrote:I received an unusually low number of posts this weekend from the Wicket user group, and none today.  Is the mailing list down?  If not, have Ibeen dropped from the list?--

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Mark Derricutt
On 5/16/06, Frank Silbermann <[EMAIL PROTECTED]> wrote: I received an unusually low number of posts this weekend from the Wicketuser group, and none today.  Is the mailing list down?  If not, have Ibeen dropped from the list?Seems to be working fine - maybe we all had a week of no-problems, or a we

Re: [Wicket-user] Global parameters in the html markup

2006-05-16 Thread Yuri Magrisso
On 5/16/06, Johan Compagner <[EMAIL PROTECTED]> wrote: what is by the way "${basep}"  ?that looks like the context path of the app. I was thinking about the context path. I can think of other use cases, but then it may be more appropriate to just modify attributes. This is already done by wicket. T

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Igor Vaynberg
pingOn 5/15/06, Mark Derricutt <[EMAIL PROTECTED]> wrote: On 5/16/06, Frank Silbermann <[EMAIL PROTECTED]> wrote: I received an unusually low number of posts this weekend from the Wicketuser group, and none today.  Is the mailing list down?  If not, have Ibeen dropped from the list?Seems to be wor

[Wicket-user] How Wicket handle missing resources?

2006-05-16 Thread Bruno Borges
How Wicket will handle if I have a html withHere comes the News PanelBut there's no Panel("newsPanel") object? I know that with default's configuration, it will throw an exception, but if I setIResourceSettings.useDefaultOnMissingResource(true);What will happen? Will the still be printed out or wi

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Timo Stamm
Ittay Dror schrieb: how can i tell if a Page is bookmarkable or not? No constructor args or PageParameters as constructor arg -> bookmarkable See: http://www.wicket-wiki.org.uk/wiki/index.php/Bookmarkable_nonBookmarkable_pages --- Using T

Re: [Wicket-user] Default Locale not working

2006-05-16 Thread Bruno Borges
No, it should work. You all are correct about this. :)On 5/12/06, Johan Compagner <[EMAIL PROTECTED] > wrote:There will be already a Wicket Session yes.But if you login then do session.setUser(user) and session.setLocale(databaseUserLocale)that should work fine. Is that a problem? On 5/12/06, Brun

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Johan Compagner
What you could do is is something like this:override onComponentTag of Formdo the super calland then do this:tag.put("action", abookmarkableurl);and then that bookmarkable url will be pointing to a page. That handles the form submit. johanOn 5/16/06, Ittay Dror <[EMAIL PROTECTED]> wrote: Johan Comp

[Wicket-user] wicket bench 0.2.9

2006-05-16 Thread Joni Suominen
0.2.9 version of eclipse plugin is available at http://www.laughingpanda.org/mediawiki/index.php/Wicket_Bench New features/improvements: * Quick fixes * Wizard to create WebPage * Integration of Wicket's markup parser * Improved Selenium integration by using Selenium remote control 0.7 http://ww

Fwd: [Wicket-user] Re: Problem loading DatePicker inside Panel through AjaxLink

2006-05-16 Thread Bruno Borges
Looks like this last message I sent didn't reach the mailing list. Sending again... :P-- Forwarded message --From: Bruno Borges < [EMAIL PROTECTED]>Date: May 12, 2006 11:34 AMSubject: Re: [Wicket-user] Re: Problem loading DatePicker inside Panel through AjaxLinkTo: wicket-user@lists

[Wicket-user] validation

2006-05-16 Thread Vincent Jenks
Is there a good breakdown of how to use the validation classes anywhere? I see an example of RequiredValidator in the wiki but none of the others. Since RequiredValidator is depreciated and we need more control anyhow, we're looking at using some of the others. I can get them to *work* somewhat

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Gwyn Evans
Yes, I've got the same thing happening here /Gwyn On 16/05/06, Johan Compagner <[EMAIL PROTECTED]> wrote: yeah and now i am getting new mails and 4 day old mails all together. And some i still don't see comming in that i did send. So sourceforge is a bit sick again at the moment. johan

Re: [Wicket-user] Custom component inheritance

2006-05-16 Thread Igor Vaynberg
without wicket:child how do you tell wicket where in the markup to insert this new textfield?-IgorOn 5/13/06, Johan Compagner < [EMAIL PROTECTED]> wrote:but you did say that you want to add/customize the output by adding a textfield to it. That seems to me like inheritance.johanOn 5/13/06, smallufo

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Vincent Jenks
I don't think so...unless we've both been dropped. I've seen maybe five posts here all day. On 5/15/06, Frank Silbermann <[EMAIL PROTECTED]> wrote: I received an unusually low number of posts this weekend from the Wicket user group, and none today. Is the mailing list down? If not, have I bee

Re: [Wicket-user] Re: Problem loading DatePicker inside Panel through AjaxLink

2006-05-16 Thread Igor Vaynberg
but you dont have that kind of visibility. for example if you have a tabbed panel, how do you know what all the different component tab panels will use?-IgorOn 5/12/06, Bruno Borges <[EMAIL PROTECTED]> wrote: I just had an idea: how about require the programmer to inform the current page instance

Re: [Wicket-user] Sessions?

2006-05-16 Thread Igor Vaynberg
  HttpServletRequest request = ((WebRequest)RequestCycle.get().getRequest()).getHttpServletRequest();        request.setAttribute("here", "Hello world");this is wrong because you are storing the information in reque

[Wicket-user] Re: AjaxSubmitButton Help

2006-05-16 Thread Ayodeji Aladejebi
huh...it worked afterall...nice final AjaxSubmitButton ajx = new AjaxSubmitButton("asubmit",f) {     protected void onSubmit(AjaxRequestTarget target, Form form) {     setVisible(false);    target.addComponent(this);     }     };    ajx.setOutputMarku

[Wicket-user] AjaxSubmitButton Help

2006-05-16 Thread Ayodeji Aladejebi
I am tryin to setVisible(false) to an AjaxSubmitButton as soon as the request is over using the same AjaxRequestTarget from the AjaxSubmitButton onSubmit call but it dint work. how du i do this? it worked for other form components except the AjaxSubmitButton

Re: [Wicket-user] Mounted pages and page parameters

2006-05-16 Thread Igor Vaynberg
what version are you working with? i think all our strategies merge the query string parameters with any others passed in via an encoded way such as /paramname/paramvaluethe reason for the / encoding is that our users wanted crawler safe urls, and a url /catalog/productid/15 is more crawler friendl

Re: [Wicket-user] Sessions?

2006-05-16 Thread Martijn Dashorst
Add the property to your custom Session object.public class MySession extends WebSession {    private String myAttribute;    // ... getters and setters}and override either of the following methods on your Application class:     /**     * @see wicket.Application#getSessionFactory()     */    protect

[Wicket-user] Wicket-spring-example 1.2rc3

2006-05-16 Thread wicketeer
Is this broken? I downloaded and tried to build the war file but the build.xml is not configured properly. Some of the directory settings in the build.xml were not defined properly, but when fixed, the war file seems incomplete (i.e. the web application will not run). How do you get it to work

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Johan Compagner
if a http session gets expired then pages are expired there is no way around that.Or you have to use your own cookies to build the wicket session and store pages somewhere else.If you don't specify a homepage in youre application then you must override the expired page else you will get the underly

[Wicket-user] Global parameters in the html markup

2006-05-16 Thread Yuri Magrisso
Hi,Is there a way to define a parameter in the HTML markup, which is not specific for a component and is replaced when the markup tree is rendered. Consider for example the following HTML:       Some Text A     Some Text B    Some Text C   I want to be able to replace ${basep} without decl

Re: [Wicket-user] validation

2006-05-16 Thread Johan Compagner
We have a lot of standard validation classesfor the basic types the all start with the basic type name:NumberValidator or DateValidatorthose validators do all standaard stuff (min,max or range) and yes the property files are still used. And the are explaind in the javadoc:  * If that is not the cas

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
Johan Compagner wrote: did you aks that same question 2 days ago and i also replied on it: sorry, there was probably something wrong with the lists, as i didn't see my post nor your reply " if a http session gets expired then pages are expired there is no way around that. Or you have to

Re: [Wicket-user] How to write model for immutable compound value object?

2006-05-16 Thread Johan Compagner
you could use a FormValidator to validate those 2 fields (as it was one)to combine the 2 as one value (because the can't et the min and max inside the IntegerRange object?)You could wrap the 2 text fields in a formcomponent and use only a MarkupContainer for those textfields (so not really textfiel

[Wicket-user] Re: wicket:pageMapName ?

2006-05-16 Thread nato
Can someone confirm if correct is my understanding about why sometimes the pageParameters passed to my bookmarkable page contains wicket:pageMapName key, and sometimes not:When two wicket pages under the same session is accessed from two different browser window, wicket will insert the "wicket:page

Re: [Wicket-user] Wicket 1.2-rc4 available

2006-05-16 Thread Timo Stamm
No mention in the latest news? http://wicket.sourceforge.net/wicket-1.2/index.html Martijn Dashorst schrieb: Wicket 1.2-rc4 available The Wicket project has released the fourth release candidate of the 1.2 effort. We expect this to be the final candidate and if no

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Johan Compagner
yeah and now i am getting new mails and 4 day old mails all together.And some i still don't see comming in that i did send. So sourceforge is a bit sick again at the moment.johan On 5/16/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: I don't think so...unless we've both been dropped.  I've seen maybe

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Johan Compagner
if it has one of the following constructors:default: ()pageparameters: (PageParameters params)and you need ofcourse the second because else you can't get the form values.johan On 5/16/06, Ittay Dror <[EMAIL PROTECTED]> wrote: how can i tell if a Page is bookmarkable or not?Johan Compagner wrote:> W

Re: [Wicket-user] Sessions?

2006-05-16 Thread Maurice Marrink
The wicket way of storing objects in your session is by extending the wicket session. For example if you want to store somekind of User object in your session, you would create a getter and setter for it in your custom wicket session. For wicket to work with your custom session you should either o

Re: [Wicket-user] wicket:pageMapName ?

2006-05-16 Thread Johan Compagner
this happens if youre bookmarkable link sits in a page that is somehow gone into a pagemapThen also that bookmarkable links target page (when created must go in that pagemap)there is in 1.2 no other way. after 1.2 we hope to improve serverside state and maybe do clientside state then it is all not

Re: [Wicket-user] Default Locale not working

2006-05-16 Thread Bruno Borges
Oh... O... my (big... huge) mistake... I haven't noticed that there is (for real) a setLocale(...) in wicket.Session... sorry... :DI think that this ends this thread for good... :D On 5/12/06, Johan Compagner <[EMAIL PROTECTED]> wrote: The locale is FIXED in the session when it is set.I

[Wicket-user] Estonian translation for Application.properties.. and more

2006-05-16 Thread Alvar Lumberg
Hello, perhaps it would be more suited for devel list, but since I'm not one of the developers.. Anyway, there seems to be a typo in EVERY Application.properties file of 1.2-rc3: ---8<--8<--8<--8<--8<--- StringValidator.minimum='${input}' must be at least ${mimimum} chars. ---8

[Wicket-user] help

2006-05-16 Thread ketan gote
hello friends we are looking for drop down menu in wicket, we are not getting any idea related to it please send some stuff which will help us ketan

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Bruno Borges
everything is fine... just a lazy monday... ;)On 5/15/06, Frank Silbermann <[EMAIL PROTECTED] > wrote:I received an unusually low number of posts this weekend from the Wicket user group, and none today.  Is the mailing list down?  If not, have Ibeen dropped from the list?---

Re: [Wicket-user] Custom component inheritance

2006-05-16 Thread Timo Stamm
Eelco Hillenius schrieb: Yeah, use markup inheritance. See wicket-examples, http://www.javalobby.org/java/forums/t69357.html, the test cases and there's probably something about it on the WIKI. Of course there is :) http://www.wicket-wiki.org.uk/wiki/index.php/Markup_inheritance --

Re: [Wicket-user] Default Locale not working

2006-05-16 Thread Eelco Hillenius
Ok, hold on, a couple of comments further down. On 5/12/06, Bruno Borges <[EMAIL PROTECTED]> wrote: Eelco, the problem I listed in my previous email was that it is kind of impossible to create a Session object passing some User info to ISessionFactory. Let's say we have something like this: cl

Re: [Wicket-user] Localization

2006-05-16 Thread Matej Knopp
done. http://sourceforge.net/tracker/index.php?func=detail&aid=1488809&group_id=119783&atid=684978 -Matej Eelco Hillenius wrote: Wow, this was a big thread. But now it seems to have died quitely. Could someone please fetch conclusions and put this in an RFE? Eelco --

[Wicket-user] How to write model for immutable compound value object?

2006-05-16 Thread Pekka Enberg
Hi all, I am writing a field component for a simple immutable value object which is essentially the following: public class IntegerRange { private int minimum, maximum; public IntegerRange(int minimum, int maximum) { if (minimum > maximum) throw ne

Re: [Wicket-user] Ajax Panel Include

2006-05-16 Thread Martijn Dashorst
This is a problem facing all developers of Ajax components. Read a similar discussion here:http://www.nabble.com/Problem-loading-DatePicker-inside-Panel-through-AjaxLink-t1554862.html MartijnOn 5/12/06, Samyem Tuladhar <[EMAIL PROTECTED]> wrote: When I include a panel into a page after the page has

Re: [Wicket-user] Invalidating a ResourceReference

2006-05-16 Thread Timothy Bennett
On 5/12/06, Timothy Bennett <[EMAIL PROTECTED]> wrote: I set cachable to false to no avail.  configureResponse is final, so I overrode setHeaders(), but that didn't work either.   I guess I'm going to need a little sample code Nevermind.  I just got it working.  I threw away the ResourceReferen

Re: [Wicket-user] Invalidating a ResourceReference

2006-05-16 Thread Timothy Bennett
On 5/11/06, Johan Compagner <[EMAIL PROTECTED]> wrote: if you make a resoure reference to a shared resource that is or can change.Then you need to control the caching headers and last modified times. Else the browser will not know that it needs to refresh it. makes sense See resource.setCacheable (

Re: [Wicket-user] dynamic html controls

2006-05-16 Thread Timo Stamm
Igor Vaynberg schrieb: meanwhile maybe someone can write up a general wiki page. There already is a wiki page on this topic: http://wicket-wiki.org.uk/wiki/index.php/Forms_with_dynamic_elements Timo --- Using Tomcat but need to do more? N

Re: [Wicket-user] Re: wicket:pageMapName ?

2006-05-16 Thread Johan Compagner
thats correct.All wicket internal things are stripped out of the pageparameters johanOn 5/16/06, nato < [EMAIL PROTECTED]> wrote:Can someone confirm if correct is my understanding about why sometimes the pageParameters passed to my bookmarkable page contains wicket:pageMapName key, and sometimes no

Re: [Wicket-user] Localization

2006-05-16 Thread Eelco Hillenius
Wow, this was a big thread. But now it seems to have died quitely. Could someone please fetch conclusions and put this in an RFE? Eelco --- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with p

[Wicket-user] 鸿基实业

2006-05-16 Thread 刘先生
你好! 我是鸿基实业有限公司现有多余国税,地税发票对外代开,税率优惠,验票后汇款, 欢迎来电0755-21047012;手机13411865006刘先生咨询。 --- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download

Re: [Wicket-user] Custom component inheritance

2006-05-16 Thread Eelco Hillenius
Yeah, use markup inheritance. See wicket-examples, http://www.javalobby.org/java/forums/t69357.html, the test cases and there's probably something about it on the WIKI. Eelco On 5/13/06, smallufo <[EMAIL PROTECTED]> wrote: Hi I have a custom component (form) that extends Panel I want to exten

Re: [Wicket-user] selecting MarkupStream

2006-05-16 Thread Aaron Hiniker
Update:  I fixed the problem by returning the super implementation rather than 'null' at the end of the method.. I still am not sure why it isn't finding the ".html" file though, if anyone sees my mistake I'd appreciate the heads up. Aaron On Fri, 2006-05-12 at 09:02 -0700, Aaron Hinik

Re: [Wicket-user] SPAM: testing

2006-05-16 Thread Johannes Fahrenkrug
I got the message, but Thunderbird thinks its junk :) Alvar Lumberg wrote: Hello, this is a test e-mail. I'm sending it because two previous messages didn't get through. Nothing to see here, press "delete". Sorry. --- Using Tomcat but need t

[Wicket-user] Estonian translation for Application.properties.. and more

2006-05-16 Thread Alvar Lumberg
Hello, perhaps it would be more suited for devel list, but since I'm not one of the developers.. Anyway, there seems to be a typo in EVERY Application.properties file of 1.2-rc3: ---8<--8<--8<--8<--8<--- StringValidator.minimum='${input}' must be at least ${mimimum} chars. ---8

Re: [Wicket-user] Localization

2006-05-16 Thread Matej Knopp
Cool. It took an entire day to deliver this mail :) Anyway, I've seen that this is already solved in current head (markupparser got new method), so just ignore this. -Matej Matej Knopp wrote: done. http://sourceforge.net/tracker/index.php?func=detail&aid=1488809&group_id=119783&atid=684978

[Wicket-user] Sessions?

2006-05-16 Thread Nino Wael
Hi   I have an object I would like to have stored in session, so that I may pass it between pages. I’ve been looking at some sniplets and created this code for setting the object:   HttpServletRequest request = ((WebRequest)RequestCycle.get().getRequest()).getHttpServletRequest();  

[Wicket-user] Wizard's Confirmation Page

2006-05-16 Thread Michael K
Hi,I 've been playing with the latest Wizard example this morning as well as wicket-extensions-1.2-rc4, I come across couple of questions:1. How can I 'manipulate' model's value before being rendered within confirmation page? For example I want to set Firstname to 'Not available' whenever the model

Re: [Wicket-user] Global parameters in the html markup

2006-05-16 Thread Johan Compagner
what is by the way "${basep}"  ?that looks like the context path of the app. This is already done by wicket.johanOn 5/15/06, Yuri Magrisso <[EMAIL PROTECTED]> wrote:Thanks for the answers! Filters seem to be exaclty what I had in mind. Do you know how can I register a custom filter? Looks like I h

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Johan Compagner
did you aks that same question 2 days ago and i also replied on it:"if a http session gets expired then pages are expired there is no way around that.Or you have to use your own cookies to build the wicket session and store pages somewhere else. If you don't specify a homepage in youre application