ResourceLink with pagerefresh(update)

2010-03-02 Thread Boydens Joeri (OZ)
Hello, I've created an ResourceLink wich shows the user a download window for the PDF resource. Now I want the page to be refreshed when the user clicks the link so I can update the page and show the user he clicked this link. How would I do this ? Regards Joeri

RE: @RequireHttps with reverse proxy

2010-01-29 Thread Boydens Joeri (OZ)
with reverse proxy add an rfe to our jira -igor On Thu, Jan 28, 2010 at 7:43 AM, Boydens Joeri (OZ) joeri.boyd...@oz.be wrote: Hi, We have a wicket application running at the following address http://myserver.domain.be:8082/myapplication.  When I do add the @RequiredHttps annotation to my pages

@RequireHttps with reverse proxy

2010-01-28 Thread Boydens Joeri (OZ)
Hi, We have a wicket application running at the following address http://myserver.domain.be:8082/myapplication. When I do add the @RequiredHttps annotation to my pages, wicket does a great job redirecting my pages to https connection. I get something like:

RE: Re: + key as alternative for tab key

2009-09-24 Thread Boydens Joeri (OZ)
Onderwerp: Re: + key as alternative for tab key Boydens Joeri (OZ joeri.boydens at oz.be writes: How would you do this in an elegant and generic way ? Joeri Also, take a look at wicketstuff-input-events Daniel

wicket menu

2009-09-21 Thread Boydens Joeri (OZ)
Hi, We are changing from Struts to Wicket, in our Struts application we used Struts-Menu. Now I've searched the wicket mailing list but I couldn't find any descent menu. Is there a Wicket menu available, where can I find it ? Or should I write my own? I've seen some code based on

RE: wicket menu

2009-09-21 Thread Boydens Joeri (OZ)
roll a hover too. ** Martin 2009/9/21 Boydens Joeri (OZ) joeri.boyd...@oz.be: Hi, We are changing from Struts to Wicket, in our Struts application we used Struts-Menu.  Now I've searched the wicket mailing list but I couldn't find any descent menu. Is there a Wicket menu available, where

RE: wicket menu

2009-09-21 Thread Boydens Joeri (OZ)
Ernesto, Is there also a up-to-date release for wicket 1.3 ? Joeri Joeri Boydens OZ Onafhankelijk Ziekenfonds Informatica 050 40 53 09 -Oorspronkelijk bericht- Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com] Verzonden: maandag 21 september 2009 11:23 Aan:

+ key as alternative for tab key

2009-09-21 Thread Boydens Joeri (OZ)
Hi, We are rewriting an old fat client application to a more elegant web application based on Wicket. In the requirements they state that the users of the fat client application do all input with the right side of their keyboard and want to keep it that way. One special requirement is

RE: wicket menu

2009-09-21 Thread Boydens Joeri (OZ)
/p/antilia/source/browse/trunk/com.antilia.ext/sr c/com/antilia/web/dynamicdrive On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ) joeri.boyd...@oz.bewrote: Hi, We are changing from Struts to Wicket, in our Struts application we used Struts-Menu. Now I've searched the wicket mailing list

SimpleAuthorizationStratagy with errormessage fails

2009-05-25 Thread Boydens Joeri (OZ)
Hi all, I have a created a simple authorizationstrategy, SimplePageAuthorizationStrategy authorizationStrategy = new SimplePageAuthorizationStrategy( OnlineVacationAvailabilityPage.class, VacationAlreadyRegisteredPage.class) {

clean way to add visibility constraints

2009-04-01 Thread Boydens Joeri (OZ)
Hi, I have this page where I have different components that need to be show or hidden, depending on the value of some model fields. I implemented this by overriding the isVisible method of the components. Now I was wondering if there is a less verbose way of handling this? (I can't group the

RE: clean way to add visibility constraints

2009-04-01 Thread Boydens Joeri (OZ)
a method that sets the visibility on the relevant components. The Form components have to be visible to that method though (or you have to use a visitor). Regards, Daan Op 1 apr 2009, om 08:32 heeft Boydens Joeri (OZ) het volgende geschreven: Hi, I have this page where I have