Re: How to add Random number to URL ?

2009-08-13 Thread burnstone
FaRHaN wrote: Hi, I want to add a random number to my requested URL, so that each request to my page go to server and not load from the cache. How can i add a random number to each requested URL ? Some examples acheiving this behaviour will be appreciated... Why don't you just adjust your cac

Re: Issue WICKET-2409

2009-08-08 Thread burnstone
Type erasure would mean it can't, wouldn't it? Igor Vaynberg wrote: Does that change break binary compatibility? -igor - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...

Re: Problems with CheckGroup

2009-08-04 Thread burnstone
burnstone wrote: Removing the setType-Call doesn't help. Sorry, after some more debugging and then testing The Right Thing (tm) I have to say this statement is wrong. Removing the call to setType() fixes my problem. Well. Thanks for holding my hand, anyway :) --

Re: Problems with CheckGroup

2009-08-04 Thread burnstone
Debugging the code just tells me the same as the exception does: CheckGroup.updateModel: public void updateModel() { Collection collection = getModelObject(); if (collection == null) { collection = getConvertedInput(); setDefaultModelObject

Re: Problems with CheckGroup

2009-08-03 Thread burnstone
Martin Makundi wrote: What is U? In my understanding Check(box) operates on a Boolean value so the classcast exception might be there (btw. I always use CheckBox.. I never tried Check..). is just the parameter type, in this case a String, but could be an Integer or Float as well. The exampl