Re: unwanted DefaultPageManagerProvider

2013-10-18 Thread Martin Grigorov
Hi, Can you give more details about the setup and the problem ? On Thu, Oct 17, 2013 at 11:35 PM, uwe schaefer u...@codesmell.de wrote: On 14.10.2013 21:41, uwe schaefer wrote: could it also be a racecondition with clustering and public void sessionUnbound(final String sessionId)

Re: Adding images dynamicly

2013-10-18 Thread Abigail
Hi there You can just add the new image http://www.rasteredge.com/how-to/csharp-imaging/create-new-image/ according to this method: public REImage(); public REImage(int w, int h); public REImage(int w, int h, ImageMode mode); public REImage(int w, int h, ImageMode mode, byte[] data); public

Re: wicket- jqueryui Kendo DateTimePicker timePattern

2013-10-18 Thread Selom
Hi, Sorry I did not explain very well my problem. I am using the DateTimePicker (because i need the date ) class and there no constructor with such options ? Thanks. -- View this message in context:

Re: wicket- jqueryui Kendo DateTimePicker timePattern

2013-10-18 Thread Sebastien
Hi, You can override DateTimePicker#newTimePicker Best regards, Sebastien. On Fri, Oct 18, 2013 at 9:53 AM, Selom pierre.kou...@uhb.fr wrote: Hi, Sorry I did not explain very well my problem. I am using the DateTimePicker (because i need the date ) class and there no constructor with such

java.util.Properties as Form Model

2013-10-18 Thread Andy Van Den Heuvel
Hey, I'm trying to create a form with a CompoundPropertyModel to fill a java.util.Properties object dynamically. FormProperties form = new Form(form, new CompoundPropertyModel(properties)); form.add(new TextFieldString(host)); form.add(new TextFieldString(port)); This works correct when I start

Re: java.util.Properties as Form Model

2013-10-18 Thread Marios Skounakis
An idea is to wrap the Properties object in a class of your own implementing Map as follows: class MyProps implements MapString, String { Properties props; public void put(String key, String value) { if (value == null) props.remove(key); else props.put(key, value); } This does sound

Re: wicket- jqueryui Kendo DateTimePicker timePattern [RESOLVED]

2013-10-18 Thread Selom
Hello Sebastien, I did it like this. final DateTimePicker startDateTimePicker = new DateTimePicker(start,dd/MM/,HH:mm){ @Override protected TimePicker newTimePicker(String id, IModelDate model, String timePattern)

Re: unwanted DefaultPageManagerProvider

2013-10-18 Thread uwe schaefer
On 18.10.2013 09:03, Martin Grigorov wrote: Hi Martin, Can you give more details about the setup and the problem ? of course. we use two Tomcat6 with clustering enabled (Backup-Manager) with apache in front using sticky sessions. when redeploying, we restart tomcat. Now when one tomcat

How Does Checkbox Know To Store To My Data Object

2013-10-18 Thread dhongyt
I have a Data Object called DownloadBagService which works as a place to hold the checked files the a user selects. I have a page that the user are able to select files from and add it to the DownloadBagService. When the user checks on files and hits submit. The files appear in the

Re: java.util.Properties as Form Model

2013-10-18 Thread Andy Van Den Heuvel
This indeed solves the trick. I'm not sure this is a bug, since the propertyresolver is a general system and Hashtable is just an exception to normal javabean rules. On Fri, Oct 18, 2013 at 2:01 PM, Marios Skounakis msc...@gmail.com wrote: An idea is to wrap the Properties object in a class