Re: enclosure changes in 1.4.4

2009-12-13 Thread Girts Ziemelis
I also liked the behaviour - it made the code shorter, as I did not have to mirror the component tree in both then and else branches. I guess it is not a big deal, except for the testing headaches - this breaks the code at runtime :( I now, i know - I should have test cases covering all branches

Re: SpringWicketTester code (tested with Wicket 1.4 and spring-wicket)

2009-12-13 Thread Peter Gardfjell
Great post! I had difficulties getting the wicket tester up and running with my Spring-enabled app but your class worked like a charm. Wouldn't it be a good idea to contribute that code to the wicket-spring subproject? best regards, Peter -- View this message in context:

URL Rewriting in Wicket

2009-12-13 Thread Andreas Maza
Hello, I would like to do a simple URL rewriting in my application: All requests containing a given path (e.g., a /x/...) should be filtered and redirected accordingly. In other words, for a request to http://www.example.com/x/something I want to do a database lookup based on the value of

Re: enclosure changes in 1.4.4

2009-12-13 Thread Anton Veretennikov
Consistency is one of wicket's strengths. My tiny vote for 1.4.4 -- Tony On Sun, Dec 13, 2009 at 3:35 PM, Girts Ziemelis girts.zieme...@gmail.com wrote: I also liked the behaviour - it made the code shorter, as I did not have to mirror the component tree in both then and else branches. I

SV: enclosure changes in 1.4.4

2009-12-13 Thread Wilhelmsen Tor Iver
Consistency is one of wicket's strengths. My tiny vote for 1.4.4 -- Tony +1 I never interpreted wicket:enclosure (as documented) as allowing the child attribute to reference a component anywhere else than inside the enclosure. - Tor Iver

Re: enclosure changes in 1.4.4

2009-12-13 Thread Martin Makundi
What about RFE for wicket:enclosure depends-on=arbitrary-relative-component-path stuff /wicket:enclosure ?? ** Martin 2009/12/13 Anton Veretennikov anton.veretenni...@gmail.com: Consistency is one of wicket's strengths. My tiny vote for 1.4.4 -- Tony On Sun, Dec 13, 2009 at 3:35 PM,

Re: SpringWicketTester code (tested with Wicket 1.4 and spring-wicket)

2009-12-13 Thread benjamintilford
Does this handle transactions (e.g. rolls transactions back at the end of a test method) like the test runners provided by Spring? Loritsch, Berin C. wrote: import javax.servlet.ServletContext; import org.apache.wicket.protocol.http.MockServletContext; import

Re: [announce] Wicket 1.4.4

2009-12-13 Thread nmelen...@getsense.com.ar
great! los re banco muchachos is what we would say in argentina :) NM On Fri, Dec 11, 2009 at 3:35 PM, Igor Vaynberg igor.vaynb...@gmail.comwrote: and now with a working changelog link:

Re: not addding componet in case of error

2009-12-13 Thread Martijn Dashorst
Or just set visibility based on error On Saturday, December 12, 2009, vineet semwal vineetsemwal1...@gmail.com wrote: add empty webmarkupcontainers as your components,if no error,replace the containers with your components else you don't need to replace. On Sat, Dec 12, 2009 at 8:02 AM,

[Announce] First release of datatable-autocomplete wicketstuff module

2009-12-13 Thread Michael O'Cleirigh
Hello, I've just committed the first version of the datatable-autocomplete module into the wicketstuff-core project at wicketstuff.org. It is licensed under the Apache License version 2. The main use for this project is to have quick AJAX lookups for large static datasets. It includes a

Re: enclosure changes in 1.4.4

2009-12-13 Thread Daan van Etten
I love how simple Wicket's markup is. Please keep it clean :-) Let's keep logic in Java and markup in HTML... no mixing. Regards, Daan van Etten Op 13 dec 2009, om 18:00 heeft Martin Makundi het volgende geschreven: What about RFE for wicket:enclosure

Re: Modal Window Problems On Internet Explorer.

2009-12-13 Thread victorTrapiello
Hello guyss, I find it anoying as well I´m developing a web app and now I realize that the modal window only works in mozilla... when I try to open it wit I explorer 7 or 8 it comes up with an error page the url does not exist do you know how to fix that or it means our lovely java framewor

Re: General questions regarding Wicket roadmap and plans

2009-12-13 Thread Lester Chua
But you did release them and obtained a financial benefit from the releases, the very fact that it is released to the outside world make others know of your existance and improves your exposure tremendously. The particular point under discussion originally was whether a good and active

Can you attach multiple AjaxFormComponentUpdatingBehavior to the same component?

2009-12-13 Thread Steve Mactaggart
Hi all, First up must say that I love wicket, and hope to have some elements to contribute back to the community soon. I'm working on building a set of enhanced components, but have run into a problem. I am building a FormComponentPanel that has an a DropDownChoice within it. I want the panel

Re: not addding componet in case of error

2009-12-13 Thread vineet semwal
toggling visibility will always do, my idea was creating the actual component only if data is available . On Mon, Dec 14, 2009 at 2:05 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: Or just set visibility based on error On Saturday, December 12, 2009, vineet semwal