Re: keeping parameters when reloading a page

2008-05-04 Thread Eyal Golan
Johan, Wonderful, it worked. All I did was: mount(new HybridUrlCodingStrategy("/entityBrowser", EurekifyBrowserPage.class)); I'm going to investigate this class, but it actually did the job! Jeremy, As you can see, the filed get set by the PropertyModel: new DropDownChoice("confNames", new Propert

Re: keeping parameters when reloading a page

2008-05-03 Thread Johan Compagner
Mount it with the HybridUrlCoding strategy i think that should work because then a redirect to a bookmarkable page is done but that still has some state in the url for a refresh On Sat, May 3, 2008 at 9:01 PM, Eyal Golan <[EMAIL PROTECTED]> wrote: > Anyone? > Any idea? > I thought about keeping

Re: keeping parameters when reloading a page

2008-05-03 Thread Jeremy Thomerson
Please paste more of the code from your dropdown box or form... How does the field get set? Are you submitting a form after they change the dropdown, or are you overriding the wantOnSelectionChangedNotifications() and receiving a notification when they change it? Have you set a breakpoint in you

Re: keeping parameters when reloading a page

2008-05-03 Thread Eyal Golan
Anyone? Any idea? I thought about keeping it in the Session but it seems too much. On Thu, May 1, 2008 at 1:22 PM, Eyal Golan <[EMAIL PROTECTED]> wrote: > I think it is ... > I have this in my application: mountBookmarkablePage("/entityBrowser", > EurekifyBrowserPage.class); > And my link is: new

Re: keeping parameters when reloading a page

2008-05-01 Thread Eyal Golan
I think it is ... I have this in my application: mountBookmarkablePage("/entityBrowser", EurekifyBrowserPage.class); And my link is: new BookmarkablePageLink(MenuItem.LINK_ID, classLink) .. So, is there a way to pass this problem? On Thu, May 1, 2008 at 12:23 PM, Johan Compagner <[EMAIL PROTE

Re: keeping parameters when reloading a page

2008-05-01 Thread Johan Compagner
What url do you refresh? A bookmarkable one? Then the page is recreated every time so field is null On 5/1/08, Eyal Golan <[EMAIL PROTECTED]> wrote: > Hello all, > I have a page that has a variable called configurationName (private String > configurationName;) > I set it using a DropDown component

keeping parameters when reloading a page

2008-04-30 Thread Eyal Golan
Hello all, I have a page that has a variable called configurationName (private String configurationName;) I set it using a DropDown component: DropDownChoice namesSelect = new DropDownChoice("confNames", new PropertyModel(this, "configurationName"), c