Re: Conversation scope in wicket

2009-06-18 Thread Carl-Eric Menzel
+1 I fully agree. Conversation scope is a kludge for a broken model, and in the end nothing more than a specialized form of global variables. Just put your state into the appropriate page or component instances and/or models, and you get *any* scope you need, for free. Carl-Eric On Thu, 18 Ju

Fw: Problem with Maven archetype, Eclipse Classpath and jetty:run

2009-05-26 Thread Carl-Eric Menzel
On Tue, 26 May 2009 08:39:36 -0700 (PDT) "Juan Carlos Garcia M." wrote: > [MECLIPSE ticket and workaround] > > Hope this help. Yes it does, thank you. Carl-Eric - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: Problem with Maven archetype, Eclipse Classpath and jetty:run

2009-05-26 Thread Carl-Eric Menzel
On Tue, 26 May 2009 08:31:04 -0700 Igor Vaynberg wrote: > go to preferences/compiler/building/output folder and remove *.html > from Filtered Resources list. I know that :-) I was proposing making this the default in the archetype. > test is for tests :) > the proper way to do this is to crea

Re: AjaxEditableLabel ... but how to get the changed value?

2009-05-26 Thread Carl-Eric Menzel
On Tue, 26 May 2009 16:27:18 +0200 Dorothée Giernoth wrote: > Now I want to write the changed information from these labels back > into the database after the content has changed. Wouldn't be too much > of a problem if I knew how to retrieve the changed value from the > label. I really have no cl

Problem with Maven archetype, Eclipse Classpath and jetty:run

2009-05-26 Thread Carl-Eric Menzel
Hi, when creating a fresh Wicket project with the following line as generated by the quickstart page on wicket.apache.org: mvn archetype:create -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=1.4-rc4 -DgroupId=com.mycompany -DartifactId=my

Re: clarification on page versioning

2008-04-19 Thread Carl-Eric Menzel
Doug Donohoe wrote: > I'd probably have to do an anonymous subclass of my Login panel. It doesn't > know about it's parent or what the parent might like to swap in when a > logged in user is present. > > I'll look under the covers of replaceWith() - I basically want to do > whatever replaceWith()

Re: clarification on page versioning

2008-04-19 Thread Carl-Eric Menzel
> Both Login and CurrentProfile are subclasses of "Panel". When the > login form is submitted or the logout link is submitted, in order to > get the page to re-render, I had to use this code: > > setResponsePage(getPage().getClass()); In this case the page isn't re-rendered, it is re-created,

Re: CompoundModel based on proxies

2008-02-06 Thread Carl-Eric Menzel
Scott Swank wrote: > We're happy to share if folk like this approach. N.B. that the .to() > call is for readability rather than out of any necessity. I'm quite interested in this. This looks like it is just crazy and clever enough to be really useful :-) Thanks! Carl-Eric --

Re: BookmarkablePageLink in 1.2.6 - how to remove pagemap parameter from URL?

2007-10-26 Thread Carl-Eric Menzel
Johan Compagner wrote: > org.apache.wicket.settings.IPageSettings#getAutomaticMultiWindowSupport() Thanks! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: BookmarkablePageLink in 1.2.6 - how to remove pagemap parameter from URL?

2007-10-26 Thread Carl-Eric Menzel
Johan Compagner wrote: > you only get that when the newBrowserWindow detection already did detect > a new browser window and created an pagemap for you > > If you just stayed in the first window then the pagemap wouldn't happen. Interesting. I did stay in the first window. But now that you say it

Re: BookmarkablePageLink in 1.2.6 - how to remove pagemap parameter from URL?

2007-10-24 Thread Carl-Eric Menzel
Anybody know how to do this? I'm out of ideas right now. Original Message Subject: BookmarkablePageLink in 1.2.6 - how to remove pagemap parameter from URL? Date: Mon, 22 Oct 2007 00:31:04 +0200 From: Carl-Eric Menzel <[EMAIL PROTECTED]> To: users@wicket.apache.org

BookmarkablePageLink in 1.2.6 - how to remove pagemap parameter from URL?

2007-10-21 Thread Carl-Eric Menzel
Hi, in my application I mount a page like this: mountBookmarkablePage("/view", ViewGallery.class); Then, on a page I try to make a bookmarkable page link like this: final PageParameters pageParameters = new PageParameters(new HashMap() { { put("gallery", galleryId); }

<    1   2