Re: [Wicket-user] wicket stuff GMap: New Exciting Features:)

2007-05-13 Thread Martijn Dashorst
On 5/11/07, Eelco Hillenius [EMAIL PROTECTED] wrote: PS this is the right place to write about new features correct? Technically, the dev list would be better. But this is fine. Thanks for your contributions and keeping us up-to-date! Agreed. When the gmap project gets a release, it would

[Wicket-user] [EMAIL PROTECTED]: [jira] Resolved: (WICKET-527) Panel header contribution breaks AJAX update in Internet Explorer]

2007-05-13 Thread John Krasnay
Thanks Matej. I guess I was thrown off by a couple of things, first that it worked in Firefox, and second that Wicket didn't complain about the tag not being well-formed as it does for components. Would it be a good idea to have wicket:head check the well-formedness of its contents? Should I

Re: [Wicket-user] Page Expiration when first clicking AJAX

2007-05-13 Thread Johan Compagner
can you debug it some how? Can you figure out why the page is not found? Do you get the second time the same httpsession (that should be created on the first request) johan On 5/13/07, Andrew Berman [EMAIL PROTECTED] wrote: There's two things here: 1. When I click the Ajax link and it

Re: [Wicket-user] Wicket requiring one of my Spring managed beans to have a default constructor

2007-05-13 Thread John Krasnay
Not directly related to your question, but you might like to know that the name property of @SpringBean defaults to your field name, so you could have written it like this... @SpringBean private ContentSettings contentSettings; @SpringBean private LearningItemRepository

Re: [Wicket-user] BookmarkablePageLink converts String parameters to String[]? (Wicket 1.2.6)

2007-05-13 Thread manuel barzi
Hi, Eelco, I did a short example, a simple (without much complexity, as the original page has) page2page flow by bookmarkable link, passing 2 parameters, but it's working the right way!? it's not converting String to String[] parameters. Strange behaviour... because the phenomenon is actually

Re: [Wicket-user] BookmarkablePageLink converts String parameters to String[]? (Wicket 1.2.6)

2007-05-13 Thread Al Maw
Hi, I've had a look into this. String parameters in the servlet-api spec are String arrays, so that you can go: ?color=redcolor=greencolor=blue ...and expect to get String[] color = String { red, green, blue }; This is why we have convenience methods for you (as does servlet-api). Construct

Re: [Wicket-user] Page Expiration when first clicking AJAX

2007-05-13 Thread Andrew Berman
I've been trying to debug, but am not sure what to really look for. No, I do not get the same session. One is definitely created on the first request and then I see another one created on the second request. On 5/13/07, Johan Compagner [EMAIL PROTECTED] wrote: can you debug it some how? Can

Re: [Wicket-user] Page Expiration when first clicking AJAX

2007-05-13 Thread Igor Vaynberg
maybe because ajax links do not have the jsessionid in them? but then again, the cookie should kick in by second request, so jsessionid in the ajax links is not really necessary. still, passing those urls through request.rewrite() might be something we want to think about. -igor On 5/13/07,

Re: [Wicket-user] HomePage url changes when user returns from a second wicket page

2007-05-13 Thread howzat
Any one have any ideas on the below? howzat wrote: Wicket adds the following markup to my HomePage (http://localhost:8081/wicket/test) head: script type=text/javascript !--/*--![CDATA[/*!--*/ if (window.name=='') { window.name=wicket:default; } /*--]]*//script and the user's

Re: [Wicket-user] Page Expiration when first clicking AJAX

2007-05-13 Thread Jonathan Locke
we're getting some issue like this too and on only one server. Eelco Hillenius wrote: Are you working on multiple servers? On 5/12/07, Andrew Berman [EMAIL PROTECTED] wrote: Igor, Eelco, anyone? This issue is pretty major as I'm losing all the session info when they first come into

[Wicket-user] 1.3 1.2.6

2007-05-13 Thread howzat
I have managed to spend a few hours looking at 1.2.6 over the last couple of weeks, and it is certainly better than any other framework I have come across for java web-apps. My only concern is the documentation, but the forum seems very active, so it will probably be able to fill the gaps whilst

Re: [Wicket-user] Wicket and web services

2007-05-13 Thread Johan Compagner
but you don't submit again because in the browser you never have the url of the post (at least in the default settings of wicket) because then we always do a redirect after post johan On 5/12/07, Lowell Kirsh [EMAIL PROTECTED] wrote: why would you test for post in the resulting page? The

Re: [Wicket-user] HomePage url changes when user returns from a second wicket page

2007-05-13 Thread howzat
Al, that is a very helpful reply, thank you! Yes, I have a lot to learn about wicket, but I know a lot more than I did a few days ago, and I like it so far. In my particular case, the page in question is the HomePage, so, since the user has already been there on her way to Page2, I suppose I will

Re: [Wicket-user] HomePage url changes when user returns from a second wicket page

2007-05-13 Thread Alastair Maw
howzat wrote: Al, that is a very helpful reply, thank you! No problem. ;-) Yes, I have a lot to learn about wicket, but I know a lot more than I did a few days ago, and I like it so far. Great! In my particular case, the page in question is the HomePage, so, since the user has already

Re: [Wicket-user] BookmarkablePageLink converts String parameters to String[]? (Wicket 1.2.6)

2007-05-13 Thread Jean-Baptiste Quenot
* Al Maw: This behaves properly with both mounted BookmarkablePages, and also unmounted ones. Hi Al, we're only talking about 1.2.6 in this thread. There appears to be a regression or incompatibility between 1.2.5 and 1.2.6. See: ClassCastException in WebRequestCodingStrategy

Re: [Wicket-user] Wicket and web services

2007-05-13 Thread Lowell Kirsh
Hi, I'm not sure I understand what you just said. I think I do have the url of the post in my browser. That is, now that I have set redirect=false, when you reload the results page, it will execute the logic (with side effects) again. But I'm thinking perhaps I'm doing this wrong. Basically, I

Re: [Wicket-user] 1.3 1.2.6

2007-05-13 Thread Lowell Kirsh
On 5/13/07, howzat [EMAIL PROTECTED] wrote: ... My only concern is the documentation, but the forum seems very active... You should get a copy of the Pro Wicket book. It is well worth the money. I was planning to stay put with 1.2.6 until 2.0 is closer to production, but perhaps I should go

Re: [Wicket-user] Exception loading sessions from persistent storage

2007-05-13 Thread Lowell Kirsh
But this is annoying for me because when i get this exception I have to manually restart tomcat again - which is not a big deal, but during development this is something I have to do many times a day. So is it possible to tell wicket not to save session data to disk? On 5/12/07, Johan Compagner

[Wicket-user] Autolinkresolver within Panel code

2007-05-13 Thread RĂ¼diger Schulz
Hello, I am currently migrating my application from 1.2 to 1.3 Snapshot. So far this went very well. But now I have a little problem: All my pages are subclassed from a common basepage. That page has a Panel with login information and some links. On the basepage-markup, the html of the panel is

[Wicket-user] DatePicker format instructions ignored

2007-05-13 Thread howzat
I have a DateTextField and I have associated a DatePicker with it as per the javadocs' example usage. When the user selects a date from the DatePicker I would like it to use a format _other than_ dd/MM/ to populate the DateTextFiled. I have tried using the setIfDate() setting (the javadoc

[Wicket-user] repeating the same text in several places on one page

2007-05-13 Thread Lowell Kirsh
I'd like to repeat the same thing in several spots on the same page. Does this mean that I have to create several labels? Or is there a way I could have them all reference the same label? Thanks, Lowell - This SF.net email

Re: [Wicket-user] Autolinkresolver within Panel code

2007-05-13 Thread Juergen Donnerstag
A quickstart would be great -Juergen On 5/14/07, RĂ¼diger Schulz [EMAIL PROTECTED] wrote: Hello, I am currently migrating my application from 1.2 to 1.3 Snapshot. So far this went very well. But now I have a little problem: All my pages are subclassed from a common basepage. That page has a

Re: [Wicket-user] How to display applet in wicket?

2007-05-13 Thread edward durai
anyone help this. edwarddurai wrote: actually my html file looks like here I have one Graph.class file inside mywicket.examples folder. Could you tell me what is archive=applets.jar,log4j-1.2.12.jar. Is it essential. Because Graph.java is not inside in jar file. So what jar file here

[Wicket-user] Where is the mailing list archive?

2007-05-13 Thread Mark van Leeuwen
I've just joined the mailing list and wish to search the archive so that I don't bother you with questions already answered. But where is the archive? The archive links on http://wicketframework.org/mail-lists.html result in errors and searching on sourceforge yields nothing. Mark

Re: [Wicket-user] repeating the same text in several places on one page

2007-05-13 Thread Igor Vaynberg
you cannot reuse the same label more then once in markup. there are various reasons for this that have to do with how wicket works internally. what you can do is reuse the instance of model that drives the labels. -igor On 5/13/07, Lowell Kirsh [EMAIL PROTECTED] wrote: I'd like to repeat