Re: Google AppEngine Initializer and Wicket 6?

2015-05-12 Thread Martin Grigorov
Hi, On Tue, May 12, 2015 at 6:48 PM, Christopher Merrill < ch...@webperformance.com> wrote: > Thanks for responding, Martin. > > I have found only one error in the AppEngine logs - that was for the #3 > that I mentioned above - there is a Wicket error in the logs that says a > button is not enabl

Re: Drop Down Choice default value

2015-05-12 Thread Chris
Marcel, Sven, thanks a lot for your answers! Chris > Am 12.05.2015 um 15:24 schrieb Marcel Barbosa Pinto : > > Another way is to provide a value on your .properties file. > > For instance: > > nullValid=Please choose > myFieldId.nullValid=Please choose a value for ${label} > > On Tue, May 12

Re: Google AppEngine Initializer and Wicket 6?

2015-05-12 Thread Christopher Merrill
Thanks for responding, Martin. I have found only one error in the AppEngine logs - that was for the #3 that I mentioned above - there is a Wicket error in the logs that says a button is not enabled. It appears when I click the button (which had been previously enabled via an Ajax event). Other th

Re: Initializer problem - resources not being loaded

2015-05-12 Thread mscoon
You are actually right Sven. It is a broken pom.xml that causes the wicket.properties file to not be included in the jar file. And a broken build process that hides the problem in pom.xml in most dev machines. Apologies for bothering the list with an irrelevant issue... On Tue, May 12, 2015 at

Re: Initializer problem - resources not being loaded

2015-05-12 Thread Sven Meier
Hi, >if the problematic dev machine produces a war (via maven), and the war is deployed to our test server, >the initializer is again never loaded. Wars built from other machines work fine. mh, sounds like a build problem. Do you have a broken wicket-sol artefact in your local maven repositor

Re: Drop Down Choice default value

2015-05-12 Thread Marcel Barbosa Pinto
Another way is to provide a value on your .properties file. For instance: nullValid=Please choose myFieldId.nullValid=Please choose a value for ${label} On Tue, May 12, 2015 at 8:26 AM, Sven Meier wrote: > Hi, > > you have to override #getNullValidDisplayValue(), > #getNullKeyDisplayValue() is

Initializer problem - resources not being loaded

2015-05-12 Thread mscoon
Hi all, We have a web application which is using an internal library called wicket-sol. The library is installed in our local maven repository. wicket-sol contains a property file "wicket.properties" which has a single entry: initializer=gr.sol.wicket.Initializer The gr.sol.wicket.Initializer c

Re: Drop Down Choice default value

2015-05-12 Thread Sven Meier
Hi, you have to override #getNullValidDisplayValue(), #getNullKeyDisplayValue() is for cases where null is *not* valid. Regards Sven On 12.05.2015 12:44, Chris wrote: Hi all, I have a Drop down choice field and would like to override the default select value. I have made following settin

Drop Down Choice default value

2015-05-12 Thread Chris
Hi all, I have a Drop down choice field and would like to override the default select value. I have made following settings but the default value is empty. Is there sth missing? setNullValid(true); @Override protected String getNullKeyDisplayValue() { return "Please choose"; } Thanks, Chri