Re: [Wicket-user] servlet-mapping

2006-11-17 Thread Dipu
Hi Igor, Johan Thanks very myuch for the clarification. Regards Dipu - Original Message - From: Igor Vaynberg To: wicket-user@lists.sourceforge.net Sent: Thursday, November 16, 2006 6:22 PM Subject: Re: [Wicket-user] servlet-mapping to better explain usually static

Re: [Wicket-user] servlet-mapping

2006-11-17 Thread Jean-Baptiste Quenot
* James Carnegie: I don't know the answer to your problem, but I am experiencing it too and would be very interested in learning about any solutions you find. Customers need to be able to specify what URL's look like, so the Wicket framework should _not_ dictate this. Can someone

[Wicket-user] General ProgressIndicator (wicket 2)

2006-11-17 Thread Stefan Lindner
The fiel upload example contains an upload progress bar. But this component seems to be hard wired to an file upload. Is there a general progress indicator component? A mechanism thats reports the status of an operatioin that is processes somewhere in the backend of n applicatioin? Stefan

Re: [Wicket-user] Just wonder how everybody manage the image path when using wicket?

2006-11-17 Thread Jean-Baptiste Quenot
* Erik van Oosten: I think you are looking for this information: http://cwiki.apache.org/WICKET/wicket-behind-a-front-end-proxy.html I don't think this is the right answer as the URL is not generated by Wicket in this usecase. -- Jean-Baptiste Quenot aka John Banana Qwerty

Re: [Wicket-user] Question about feedback panel

2006-11-17 Thread Carfield Yim
On 11/17/06, Erik van Oosten [EMAIL PROTECTED] wrote: Hello Carfield, You can call the methods error, info and warn on any component to add messages to the message list. Thanks, this is very intuitive and I find out soon after I post my question, great feature.

Re: [Wicket-user] Authorization startegy redirect but keep parameters

2006-11-17 Thread Marc-Andre Houle
Indeed, it was what I was searching for. The answer have probably seems too simple for what I was wanting! Thanks a lot Erik, it was a matter of copy/pasting to make it work and sorry because I didn't understand you. Also a big thanks for the explanation from Igor since it is what made me

[Wicket-user] TabbedPanel question

2006-11-17 Thread Decebal Suiu
I have a TabbedPanel with two tabs. The first tab contains a panel with a data table (DefaultDataTable with filter suport). The second tab contains a panel with a link. When I click on link I want to modify the filter from the first tab and jump to the first tab. For this, in the onClick() method

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2006-11-17 Thread Wilson
Hi Johan, I am having problems with new instances caused by bookmarkable pages. I was unable to find how to provide my own implementation of IRequestTargetResolverStrategy. Probably I must override a method somewhere, but I was unable to find it. How do I provide my implementation to

Re: [Wicket-user] TabbedPanel question

2006-11-17 Thread Igor Vaynberg
h i guess what you can do is let one ITab know about the other ITab by passing in a reference. then have ITabs cache the panel instance instead of always creating one. then when the second itab creates the panel it can pass the reference to the first itab into that panel so it can get to the

Re: [Wicket-user] How to write html pages without default header contributions?

2006-11-17 Thread Erik van Oosten
Hello, Since the e-mail below I have not gained any further insights. Therefore we solved the matter with a huge kludge: a filter that removes javascript. Regards, Erik. Erik van Oosten schreef: Hello, I have a requirement to download html files so that they can be added to an

[Wicket-user] Posting Data from a Non wicket Form to Wicket

2006-11-17 Thread Ayodeji Aladejebi
What will be the nicest way to do this in wicket if youhave to recieve from an external form Well i tried using the a mounted Wicket Link as form target but am still misplacd as to how to trap parameters in the form param1=value1param2=value2 Any tip

Re: [Wicket-user] Posting Data from a Non wicket Form to Wicket

2006-11-17 Thread Korbinian Bachl
if you trap them like that ?param1=value1param2=value2 ... you can get them by using PageParameter in your constructor e.g: class foo{ foo(PageParameters param){ String value1 = param.getString(param1); } } regards _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im

[Wicket-user] TextTemplateHeaderContributor

2006-11-17 Thread Manuel Alejandro de Brito Fontes
Hi, I'm trying to do something similar like this (http:// chillenious.wordpress.com/tag/wicket/page/2/) but instead of a dynamic javascript, i want to modify a css style. The next code is similar to the previous page: MapString, CharSequence cssMap = new MiniMapString, CharSequence ( 1 );

Re: [Wicket-user] Posting Data from a Non wicket Form to Wicket

2006-11-17 Thread Eelco Hillenius
And since a few days in 1.3/ long time in 2.0, you could use it with stateless forms. Investigate a bit to see how this works. Eelco On 11/17/06, Korbinian Bachl [EMAIL PROTECTED] wrote: if you trap them like that ?param1=value1param2=value2 ... you can get them by using PageParameter in

[Wicket-user] vegas baby

2006-11-17 Thread Scott Swank
So I don't suppose that anyone who knows Wicket reasonably well would be interested in moving to Vegas? In the next few weeks we'll be starting our big re-write of www.vegas.com www.lasvegas.com. We'll put in a couple of weeks with one team developing in JSF/Facelets and the other in Wicket.

Re: [Wicket-user] vegas baby

2006-11-17 Thread Nick Heudecker
Hi Scott, While I can't move to Vegas, I'd be interested in helping with the project on a consulting basis. I also teach a 3-day Wicket course. On 11/17/06, Scott Swank [EMAIL PROTECTED] wrote: So I don't suppose that anyone who knows Wicket reasonably well would be interested in moving to

Re: [Wicket-user] TabbedPanel question

2006-11-17 Thread Decebal Suiu
Inded, in my real application, I have many tabs (six) and I want to jump from the tab with index 5 (contains the link) to the tab with index 4 (probably not displayed yet). The flow in this situation is: display the page with tabbed panel = jump to the tab with index 5 = click on link = display

Re: [Wicket-user] TabbedPanel question

2006-11-17 Thread Igor Vaynberg
have you actually tried to implement what i described? im not really in business of writing people's code for them :) -igor On 11/17/06, Decebal Suiu [EMAIL PROTECTED] wrote: Inded, in my real application, I have many tabs (six) and I want to jump from the tab with index 5 (contains the

[Wicket-user] newbie question: where do I put static files?

2006-11-17 Thread Ian Clarke
I have a really simple newbie question. I am trying to get started using Wicket with Eclipse, and I'm using the QuickStart application. Where do I put static files such as CSS, and do I need to configure anything to find them? Many thanks, Ian.

Re: [Wicket-user] newbie question: where do I put static files?

2006-11-17 Thread Eelco Hillenius
If you don't want to package them (e.g. you don't need them as part as a reusable component), just put them in your web app dir (you know, the one with WEB-INF in it). Your application server will figure out how to get them. If you want them to be packaged, you typically put them in the same java

Re: [Wicket-user] vegas baby

2006-11-17 Thread Scott Swank
Nick, I appreciate that. If (as I hope) we go with Wicket we may well try to fly you out for that three day class. Cheers, Scott On 11/17/06, Nick Heudecker [EMAIL PROTECTED] wrote: Hi Scott, While I can't move to Vegas, I'd be interested in helping with the project on a consulting basis.

Re: [Wicket-user] newbie question: where do I put static files?

2006-11-17 Thread Ian Clarke
On 17 Nov 2006, at 21:34, Eelco Hillenius wrote: If you don't want to package them (e.g. you don't need them as part as a reusable component), just put them in your web app dir (you know, the one with WEB-INF in it). Your application server will figure out how to get them. If you want them to be

Re: [Wicket-user] newbie question: where do I put static files?

2006-11-17 Thread Igor Vaynberg
the other option puts the resources into a jar. so if you have a reusable component that comes as a jar file wicket knows how to find them without you as a user of that component needing to do anything. -igor On 11/17/06, Ian Clarke [EMAIL PROTECTED] wrote: On 17 Nov 2006, at 21:34, Eelco