Re: [Blog/Demo] Small demo application exploring how AngularJS and Wicket might be integrated

2013-03-07 Thread Sjoerd Schunselaar
Very nice! On Wed, Mar 6, 2013 at 11:45 AM, Andreas Kuhtz andreas.ku...@gmail.comwrote: Thanks for sharing, Ernesto!

Re: display artifact version in webpage

2011-12-15 Thread Sjoerd Schunselaar
Thank you Chantal, Thats a very easy solution. Didn't think about that. Kind regards, Sjoerd Schunselaar On Wed, Dec 14, 2011 at 1:02 PM, Chantal Ackermann chantal.ackerm...@btelligent.de wrote: Hi Sjoerd, my way of doing this is directly from pom to html using filtering. Add

Re: display artifact version in webpage

2011-12-14 Thread Sjoerd Schunselaar
Schunselaar On Wed, Dec 14, 2011 at 11:37 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Application.getFrameworkSettings().getVersion()? On Wed, Dec 14, 2011 at 11:33 AM, Sjoerd Schunselaar s.schunsel...@gmail.com wrote: Hi all, Is there a easy way to display the artifact

Re: Encoding Pageparameters

2009-11-09 Thread Sjoerd Schunselaar
Excuse me, it looks like a problem in my local firefox settings. Kind regards Sjoerd Schunselaar On Mon, Nov 9, 2009 at 10:05 AM, Sjoerd Schunselaar s.schunsel...@gmail.com wrote: Hello all, Is it possible to automatically encode PageParameters? When I put a String like bien-ĂȘtre

Re: Problems with refreshing captcha.

2009-10-02 Thread Sjoerd Schunselaar
I had the same problem with generating statistics. If your're extending the wicket Image class, you should override getImageResource. Simply add this method in getImageResource: @Override protected void setHeaders(WebResponse response) { if (isCacheable()) {

multilangual dropdown

2009-08-13 Thread Sjoerd Schunselaar
Hello all, I have a dropdown which is generated from Java code. Currently my code reads a property file, sets the values in an object and places all the objects in an arraylist. Each object has a toString method, so the value is correctly shown in the dropdown. Now I want to show a value

Re: multilangual dropdown

2009-08-13 Thread Sjoerd Schunselaar
Thank you for your quick response. It's working now! Thank you! On Thu, Aug 13, 2009 at 3:04 PM, Mathias Nilssonwicket.program...@gmail.com wrote: You can have all the objects have an getResourceKey method. Override the displayvalue of IChoiceRenderer and show the value. Example