Re: Set Double to more than 3 digits in AjaxEditableLabel

2018-08-16 Thread Martin Grigorov
Hi, The way you did this will mutate the singleton instance. The recommended way is to instantiate it yourself and override org.apache.wicket.util.convert.converter.AbstractDecimalConverter#newNumberFormat I.e. DoubleConverter dc = new DoubleConverter() { @Override protected NumberFormat

Re: wicketstuff-gmap3 marker label

2018-08-16 Thread vp143
Hi Martin, I will try and do this when work permits. Thanks for confirming -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Set Double to more than 3 digits in AjaxEditableLabel

2018-08-16 Thread Vishal Popat
Hi, In Wicket 6.29.0, I did the following within a class that extended AjaxEditableLabel @Override public IConverter getConverter(Class clazz) { DoubleConverter converter = (DoubleConverter)DoubleConverter.INSTANCE; NumberFormat format =