Re: [Wicket-user] Wicket and Websphere

2006-06-23 Thread Levy, Jeremy
But Websphere 5.02 doesn't :) From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paolo Di TommasoSent: Friday, June 23, 2006 4:19 PMTo: wicket-user@lists.sourceforge.netSubject: Re: [Wicket-user] Wicket and Websphere So it is. On 6/23/06, Ingo Adler [EMAIL PROTECTED] wrote:

Re: [Wicket-user] RadioChoice, default selection

2006-07-05 Thread Levy, Jeremy
You could just set the option in your model. Jeremy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sean Sullivan Sent: Wednesday, July 05, 2006 2:31 PM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] RadioChoice, default selection I am

[Wicket-user] Downloading a file generated on the fly

2006-07-11 Thread Levy, Jeremy
I would like to create a text file on the fly and then create a link which will initiate a download of this file. I checked out the exampleat http://www.wicket-wiki.org.uk/wiki/index.php/UploadDownload#Downloading_Images. I am thinking that I can do something similar but extend

Re: [Wicket-user] Downloading a file generated on the fly

2006-07-11 Thread Levy, Jeremy
Thanks Sean and Igor, based on both your responses I've come up with roughly the following which is working: final String filename = "thefile.csv"; final String contentType = "text/csv"; final String content = "the,content,is,this"; add(new Link("link"){ public void onClick(){

Re: [Wicket-user] Downloading a file generated on the fly

2006-07-11 Thread Levy, Jeremy
e.netSubject: Re: [Wicket-user] Downloading a file generated on the fly while this works it is a bit hacky. it would be better to let the requesttarget's response method produce the output.-Igor On 7/11/06, Levy, Jeremy [EMAIL PROTECTED] wrote: Thanks Sean and Igor, based on bo

Re: [Wicket-user] Downloading a file generated on the fly

2006-07-11 Thread Levy, Jeremy
() { } IRequestTarget.getLock() { return null; }-Igor On 7/11/06, Levy, Jeremy [EMAIL PROTECTED] wrote: I'd like to do it the clean way... When I do this: RequestCycle.get().setRequestTarget(new StringRequestTarget("hello"){ public void respond(){ String txt =

[Wicket-user] Issue with reusing a form/page

2006-08-01 Thread Levy, Jeremy
Title: Issue with reusing a form/page The following code is used to display the results using a table/repeating view. The last column is used to add a link to do another lookup. I am having two problems. 1. When the link getTasks is called regardless of which iteratation user[0] always

Re: [Wicket-user] Unknown Exception -- Wicket 1.2.1

2006-08-09 Thread Levy, Jeremy
I don't think it was someone playing with the URL, I had a user write in a say that they got the error during registration. Jeremy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eelco Hillenius Sent: Wednesday, August 09, 2006 12:22 PM To:

Re: [Wicket-user] Modifying form feedback behavior

2006-12-04 Thread Levy, Jeremy
targetted at the proper form components -igor On 12/4/06, Levy, Jeremy [EMAIL PROTECTED] wrote: I would like to change the default behavior for the way form validation feedback is reported to the end user. At the moment this form does two types of validation, one using

Re: [Wicket-user] Modifying form feedback behavior

2006-12-04 Thread Levy, Jeremy
PROTECTED] On Behalf Of Levy, Jeremy Sent: Monday, December 04, 2006 2:17 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Modifying form feedback behavior Igor, Thanks, that gets me almost there, in onError() how do I get the component that the error is being thrown against

[Wicket-user] Models and Pages

2007-02-07 Thread Levy, Jeremy
I have a bunch of labels on a page and I have associated the page with a CompoundPropertyModel, however when I update the values in the model the page doesn't reflect the change.. See the following code for an example: public View() { super(new

Re: [Wicket-user] Models and Pages

2007-02-07 Thread Levy, Jeremy
Uhh, forget it ;) From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Levy, Jeremy Sent: Wednesday, February 07, 2007 11:16 AM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Models and Pages I have a bunch of labels on a page and I