Re: RequestDispather.forward()

2007-08-12 Thread Eelco Hillenius
Would the fact that wicket now uses a filter instead of a servlet have an effect on trying to forward a request. I'm trying to forward a request from the jsp/servlet portion of our app to a bookmarkable wicket page using RequestDispatcher.forward(), but no matter what sort of path I send it,

warning: API break FormComponent#checkRequired and FormComponentPanel

2007-08-12 Thread Eelco Hillenius
All, Please read https://issues.apache.org/jira/browse/WICKET-839 and https://issues.apache.org/jira/browse/WICKET-840 and check whether this effects you. I didn't have time to look at the wicket-stuff projects, but if you are extending FormComponentPanel, you'll have to implement checkRequired

Re: Using pickwick

2007-08-12 Thread Gerolf Seitz
the last time i tried it, i had to put at least one image somehwere in the webapp folder. iirc, details can be found in the readme On 8/12/07, Tauren Mills [EMAIL PROTECTED] wrote: Can someone explain how to use pickwick from wicketstuff? I checked out pickwick from wicketstuff trunk and did

Reasons for migrating to wicket-1.3

2007-08-12 Thread Alex Objelean
I have to convince my chief that it worth to migrate the application to wicket-1.3. Can you help me to create a list of arguments? Thank you! Alex. -- View this message in context: http://www.nabble.com/Reasons-for-migrating-to-wicket-1.3-tf4256393.html#a12113341 Sent from the Wicket - User

Re: shopping cart and back button

2007-08-12 Thread Martijn Dashorst
On 8/11/07, Artur W. [EMAIL PROTECTED] wrote: 1. User opens products page. 2. User chooses a product. 3. User clicks add product to shopping cart. 4. User is redirected to shopping cart list. 5. User clicks _back button in the browser_. 6. Added product in step 3 disappear from the shopping

HTML template

2007-08-12 Thread Mathias P.W Nilsson
Is there any way of changing the HTML template without extending the class? -- View this message in context: http://www.nabble.com/HTML-template-tf4257008.html#a12114907 Sent from the Wicket - User mailing list archive at Nabble.com.

Re: HTML template

2007-08-12 Thread Igor Vaynberg
seeing as that is the entire point of wicket - pragmatic markup manipulation - the answer is no, not with wicket. you can however use text manipulation libs like velocity, etc. -igor On 8/12/07, Mathias P.W Nilsson [EMAIL PROTECTED] wrote: Is there any way of changing the HTML template

Re: HTML template

2007-08-12 Thread Mathias P.W Nilsson
Ok thanks! Havn't read much of freemarkers and velocity. What do you think is the most common use. Plain html seems as a good idé. -- View this message in context: http://www.nabble.com/HTML-template-tf4257008.html#a12115137 Sent from the Wicket - User mailing list archive at Nabble.com.

Re: HTML template

2007-08-12 Thread Igor Vaynberg
not sure what you mean -igor On 8/12/07, Mathias P.W Nilsson [EMAIL PROTECTED] wrote: Ok thanks! Havn't read much of freemarkers and velocity. What do you think is the most common use. Plain html seems as a good idé. -- View this message in context:

Re: Using pickwick

2007-08-12 Thread Tauren Mills
Hi Gerolf, Thanks for the help. After dropping an image in the webapp folder, I got a more helpful message that indicated a path that doesn't exist on my system: 4328 [btpool0-2] DEBUG org.wicketstuff.pickwick.PickwickApplication - imageFile: src\main\webapp\images So I created the images

DataTable with two TR's per row of data?

2007-08-12 Thread Tauren Mills
I would like to display two table rows for each row of data within a DataTable and would like suggestions on a good way to do that. Basically, I want output like this for each row of data: tr tdid/td tdname/td tdedit/td tddelete/td /tr tr tdnbsp/td td colspan=3long description/td /tr