RE: WicketStuff artifacts naming strategy

2011-03-25 Thread Wilhelmsen Tor Iver
- jasperreports-1.4.16.jar - jasperreports-3.7.2.jar The first one is from WicketStuff, but still, it is confusing to see this. This one of my biggest peeves with Maven: It has this concept of a groupId to namespace artifacts in the repository, but this is of no consequence when the jar

Re: WicketStuff artifacts naming strategy

2011-03-25 Thread Martin Grigorov
In the most parent wicketstuff pom.xml: build finalName${project.groupId}-${project.artifactId}-${project.version}.jar/finalName On Fri, Mar 25, 2011 at 9:31 AM, Wilhelmsen Tor Iver toriv...@arrive.nowrote: - jasperreports-1.4.16.jar - jasperreports-3.7.2.jar The first one is from

Re: IDE / Server Support

2011-03-25 Thread Peter Karich
take a look at: http://stackoverflow.com/questions/5373522/is-jrebel-ever-used-in-production-environments-what-can-it-reload-on-the-jvm http://stackoverflow.com/questions/2844135/which-java-web-frameworks-provide-hot-reload Regards, Peter. Hi, How do you get fast deployment in development

Re: Best way to periodically refresh an inmethod DataGrid?

2011-03-25 Thread Martin Grigorov
If you update the just the selected row then the selection will be lost. You may try with some JavaScript gymnastics to save the selection and restore it later. Use AjaxRequestTarget.prependJavascript() for the saving code and .appendJavascript() for the restoring code. The JavaScript to deal

Re: Navigation and Adding Panels dynamically.

2011-03-25 Thread Martin Grigorov
See Wizard component in wicket-extensions. You'll need custom logic to check whether the previous/next wizard step should be shown to the current user depending on its privileges. On Fri, Mar 25, 2011 at 1:57 AM, Mansour Al Akeel mansour.alak...@gmail.com wrote: I do have the need to implement

Re: WicketStuff artifacts naming strategy

2011-03-25 Thread Michael O'Cleirigh
I'm planning on doing point releases this weekend for 1.4.16.1 and 1.5-rc2.1 and I'll make sure the artifacts generate using the longer name. Thanks, Mike In the most parent wicketstuff pom.xml: build finalName${project.groupId}-${project.artifactId}-${project.version}.jar/finalName

Interaction betwen IAjaxRegionMarkupIdProvider, renderPlaceholderTag and visibility

2011-03-25 Thread Paul Jackson
Hi, I've just discovered what I think is a bug with IAjaxRegionMarkupIdProvider. We are using it on a Behavior that provides a border to form components (label, mandatory marker, etc), which for the most part works great. We have encountered a problem when toggling the visibility of a form

Re: Interaction betwen IAjaxRegionMarkupIdProvider, renderPlaceholderTag and visibility

2011-03-25 Thread Martin Grigorov
It sounds like bug, yes. I'm not sure how easy is to support it, though. renderPlaceholderTag() will need to iterate over all ajax behaviors and check whether they have region... Create a ticket with a quickstart and we'll see what can be made. Thanks! On Fri, Mar 25, 2011 at 1:31 PM, Paul

Re: PackageResourceReference, MetaInfStaticResourceReference and timestamps

2011-03-25 Thread MZemeck
Hi, I made a new test (serving a png and a js) with current trunk and the gap is much smaller now: tomcat is 25% faster on average. Attila Attila can you elaborate on your tests? Are you comparing the difference between using a resource reference (js) and image component (png) in wicket vs

Re: Choice of Resource for my Image component

2011-03-25 Thread Ian Marshall
1. I changed the image component from Image to NonCachingImage. This seems to have eliminated my issue of images being shown which were a previously-shown image instead of the correct one. 2. The model which I pass to my NonCachingImage is descended from LoadableDetachableModel. This model

setObject with invisible panel

2011-03-25 Thread Jered Myers
I have a form with a section that the user can show or hide via an AjaxLink. The AjaxLink is hiding and showing using Component.isVisible(boolean). When the user expands the section of the form, enters data, collapses the section of the form, and then saves, I lose the edits the user makes.

Trouble with DropDownChoice

2011-03-25 Thread Jim Goodwin
I'm trying to follow the example in the Javadoc for DropDownChoice which says: Java: List SITES = Arrays.asList(new String[] { The Server Side, Java Lobby, Java.Net }); // Add a dropdown choice component that uses Input's 'site' property to designate the // current selection, and that

Choice of Resource for my Image component

2011-03-25 Thread Ian Marshall
Hello Jim, Could I ask you to post this in a separate topic? This one is for my choice of resource for my Image component. Cheers, Ian -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Choice-of-Resource-for-my-Image-component-tp3342289p3406000.html Sent from the

Apache Wicket Cookbook Published!

2011-03-25 Thread Igor Vaynberg
For the past nine months I have been quietly working on a book about Wicket. Unlike other books on the market this one does not attempt to teach you Wicket from the ground up. Instead, it is for developers who already know the basics and want to learn how to implement some of the more advanced use

RE: Apache Wicket Cookbook Published!

2011-03-25 Thread Brown, Berlin [GCG-PFS]
Congrats. I trust Igor -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Friday, March 25, 2011 1:44 PM To: users@wicket.apache.org; d...@wicket.apache.org; annou...@wicket.apache.org Subject: Apache Wicket Cookbook Published! For the past nine months I

Re: Trouble with DropDownChoice

2011-03-25 Thread Jered Myers
You can create a simple PropertyModel to hold the value your form is trying to set. Here is an example: public Pageextends WebPage { private List letters = Arrays.asList(new String[] {A,B,C })); public String selected =B; public Page() { Form form =new Form(form);

Re: Trouble with DropDownChoice

2011-03-25 Thread Jim Goodwin
On 3/25/2011 1:54 PM, Jered Myers wrote: You can create a simple PropertyModel to hold the value your form is trying to set. Here is an example: public Pageextends WebPage { private List letters = Arrays.asList(new String[] {A,B,C })); public String selected =B; public

Re: Navigation and Adding Panels dynamically.

2011-03-25 Thread Mansour Al Akeel
Thank you Martin, I had a quick look at extension. I will try a small application with it soon. However my requirement are a bit more complex, as I need to load Panels by string. So let's say I have a String called EditUserScreen, then I need to dynamically load this panel. I am not sure yet if

Re: Trouble with DropDownChoice

2011-03-25 Thread Sven Meier
Hi, if you don't provide a model explicitly, a component will try to look up one from its parent components. Most of the time you use a CompoundPropertyModel, in this case the example in the javadoc is valid: form = new Form(form, new CompoundPropertyModel(this)); form.add(new

Re: setObject with invisible panel

2011-03-25 Thread Sven Meier
Hi, you'll have to send all values to the server via form submit, e.g. by using an AjaxSubmitLink. This will trigger processing of the whole form though. Sven On 03/25/2011 06:26 PM, Jered Myers wrote: I have a form with a section that the user can show or hide via an AjaxLink. The

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread Pierre Goupil
Excellent! I'll buy it in a week max! Are there a lot of complex graphics or is it suitable to read it in a BW e-book reader in pdf format? Actually, I think I'll buy both format but you know... Regards, Pierre On Fri, Mar 25, 2011 at 6:52 PM, Brown, Berlin [GCG-PFS]

StatelessForm redirect

2011-03-25 Thread lovewicket
Hello, I built a stateless website using Bookmarkable pages and links. I have a base page with a search form (StatelessForm) which all the other pages (bookmarkable) extend to share this form and some other tabs (Home, Links, etc). My problem is that if this search box is on AbcPage or XyzPage,

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread Igor Vaynberg
there are some graphics, but most of them are small and should look ok in a reader. i havent tried it in my kindle yet. -igor On Fri, Mar 25, 2011 at 1:00 PM, Pierre Goupil goupilpie...@gmail.com wrote: Excellent! I'll buy it in a week max! Are there a lot of complex graphics or is it

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread Bertrand Guay-Paquet
Looking forward to reading it! My copy is in the mail. On 25/03/2011 1:44 PM, Igor Vaynberg wrote: For the past nine months I have been quietly working on a book about Wicket. Unlike other books on the market this one does not attempt to teach you Wicket from the ground up. Instead, it is for

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread Matthias Gasser
Thx! Got it, and it is well done. Cheers, Matthias -- http://matthiasgasser.com Am 25.03.2011 um 22:17 schrieb Bertrand Guay-Paquet: Looking forward to reading it! My copy is in the mail. On 25/03/2011 1:44 PM, Igor Vaynberg wrote: For the past nine months I have been quietly working on

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread Cemal Bayramoglu
Looks as good as any PDF on the Kindle. I've been looking forward to this, thanks Igor! Regards - Cemal jWeekend Training, Consulting, Development http://jWeekend.com On 25 March 2011 20:47, Igor Vaynberg igor.vaynb...@gmail.com wrote: there are some graphics, but most of them are small and

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread nimmy
Congratulations on the book! My dead-tree format is in the post! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Apache-Wicket-Cookbook-Published-tp3406012p3406621.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread Attila Király
Gratulations! I ordered one. Attila 2011/3/25 Igor Vaynberg igor.vaynb...@gmail.com For the past nine months I have been quietly working on a book about Wicket...

Re: PackageResourceReference, MetaInfStaticResourceReference and timestamps

2011-03-25 Thread Attila Király
2011/3/25 mzem...@osc.state.ny.us Hi, I made a new test (serving a png and a js) with current trunk and the gap is much smaller now: tomcat is 25% faster on average. Attila Attila can you elaborate on your tests? Are you comparing the difference between using a resource reference

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread jcgarciam
Congrats!! I will order mine! On Fri, Mar 25, 2011 at 7:48 PM, Attila Király [via Apache Wicket] ml-node+3406630-1722189058-65...@n4.nabble.com wrote: Gratulations! I ordered one. Attila 2011/3/25 Igor Vaynberg [hidden email]http://user/SendEmail.jtp?type=nodenode=3406630i=0by-user=t

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread Eelco Hillenius
Another baby, congrats! Eelco On Fri, Mar 25, 2011 at 10:44 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: For the past nine months I have been quietly working on a book about Wicket. Unlike other books on the market this one does not attempt to teach you Wicket from the ground up. Instead,

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread shetc
Congrats! Bought a copy -- glad to see that the merchant vendor is Royal Bank of Scotland. Scotland the Brave! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Apache-Wicket-Cookbook-Published-tp3406012p3406765.html Sent from the Users forum mailing list archive at

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread robert.mcguinness
purchased! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Apache-Wicket-Cookbook-Published-tp3406012p3406821.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe,

Re: Apache Wicket Cookbook Published!

2011-03-25 Thread Jeremy Thomerson
I had the privilege of previewing the book's content over the past few months, and I can tell you that this book is going to be worth every penny and then some! I'd recommend it for every Wicket develop out there - even if you think you've already done it all. I guarantee you'll pick up a trick

Ajax Submit Link and detect if that button clicked

2011-03-25 Thread Brown, Berlin [GCG-PFS]
I was having trouble detecting if a particular ajax submit link was the last behavior associated with a form submission. I tried to use the findSubmittingButton (or whatever the name is) and that was always returning null. I used this approach and it works, but doesn't seem intuitintive and I