Re: [Wicket-user] Bug in 1.3? HeaderContributor.forCss(String)

2007-06-02 Thread C. Bergström
Jeremy Thomerson wrote: > I agree that relative URLs are good. But, I have multiple (20+) sites > set > up running through a single Wicket application, and I am using Apache's > ProxyPass to front-end all of them under their respective domains. I > use an > absolute slash "/" because I actually w

Re: [Wicket-user] Bug in 1.3? HeaderContributor.forCss(String)

2007-06-02 Thread Eelco Hillenius
> I think if someone uses an absolute slash - it should treat it as absolute. > That is what the standard is anywhere else within a web app, console > environment, you name it. If you want relative to where you are, you leave > the slash off. If you want absolute, you use the slash. With the bug

Re: [Wicket-user] Bug in 1.3? HeaderContributor.forCss(String)

2007-06-02 Thread Jeremy Thomerson
I agree that relative URLs are good. But, I have multiple (20+) sites set up running through a single Wicket application, and I am using Apache's ProxyPass to front-end all of them under their respective domains. I use an absolute slash "/" because I actually want it to be absolute - not relativ

Re: [Wicket-user] Wicket Security Example Time Frame

2007-06-02 Thread Maurice Marrink
Indeed GeneralTest is the place to look at right now. I am working on some examples but there are only so many hours in a day :) Also there is an (unfinished) getting started section at the wiki http://wicketstuff.org/confluence/display/STUFFWIKI/Getting+started+with+Swarm Thanks for the interest

[Wicket-user] Tree and Panel - refresh problem (1.3b1)

2007-06-02 Thread Vatroslav
Hi, I'm trying to update (refresh) Panel from Ajax tree (by clicking tree item) but without success. :( I've checked, Panel's model is changed. If I put a Label component instead of Panel, and inside onNodeLinkClicked(AjaxRequestTarget target, TreeNode node) method modify Label's model and then r

[Wicket-user] When my page is onload, can Ajax Modal window be loaded?

2007-06-02 Thread Liu Lin
I have a question. When my page is onload, can Ajax Modal window be loaded? It's auto loaded. Not click button to load modal window. Please help me.Thanks a lot! - This SF.net email is sponsored by DB2 Express Download DB2 Exp

Re: [Wicket-user] javascript version of setVisible()

2007-06-02 Thread Alex Objelean
You should use javascript to hide your component. Matthieu Casanova wrote: > > Hi, I want to hide a component, and sometimes making it visible using > javascript. > Is there something like that in wicket api or should I do it myself with > some javascript ? > > Matthieu > > --

Re: [Wicket-user] RepeatingView/ Container behaviour

2007-06-02 Thread Korbinian Bachl
was the 1.3.0 Snapshot from 18th May; > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Juergen Donnerstag > Gesendet: Samstag, 2. Juni 2007 13:29 > An: wicket-user@lists.sourceforge.net > Betreff: Re: [Wicket-user] RepeatingView/ Container

Re: [Wicket-user] RepeatingView/ Container behaviour

2007-06-02 Thread Juergen Donnerstag
Wich wicket version did you use for your test? I remember I fixed a similar bug a few week ago. I don't remember the details though. Juergen On 5/28/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > Hi Eelco, > > tried it, but this seems to go more buggy than before: > > if I use > > > he compl

Re: [Wicket-user] Is there a way to redirect to a page from inside a resource?

2007-06-02 Thread Martijn Dashorst
RequestCycle.get().setRequestTarget(new FooRequestTarget(...)); or throw new RestartResponseException(...); Martijn On 6/1/07, cram <[EMAIL PROTECTED]> wrote: > > I'd like to be able to redirect from inside of a (File)ResourceStream to a > specific url or page instead of throwing an exception un

Re: [Wicket-user] Custom Message Resolver

2007-06-02 Thread Juergen Donnerstag
The namespace of the attribute? You are right, there is no special methof for it.You need to check that the attribute name starts with your own namespace. Juergen On 5/21/07, Scott Sauyet <[EMAIL PROTECTED]> wrote: > I wrote: > > I see the experimental class WicketMessageTagHandler and note that

Re: [Wicket-user] Injecting session scoped beans with wicket-spring-annot

2007-06-02 Thread Rüdiger Schulz
Hello, 2007/6/2, Daniel Stoch <[EMAIL PROTECTED]>: [] > When I enter this page first time in a browser there is the following > output: > Constructor B - 1 > Constructor A - 2 > Constructor B - 3 > This is a sample welcome text for Spring bean 3 > > So as you can see there are 3 calls to Simpl