Yes, it should have been super.newNumberFormat(locale)
On Fri, Aug 17, 2018, 09:27 vp143 <[email protected]> wrote:
> Thanks Martin, that worked great!
>
> Just for completeness, I needed to make a slight modification as I did not
> find super.createNumberFormat
>
> DoubleConverter dc = new DoubleConverter() {
> @Override
> protected NumberFormat newNumberFormat(final Locale
> locale) {
> NumberFormat format =
> NumberFormat.getInstance(locale);
> format.setMaximumFractionDigits(12);
> return format;
> }
> };
>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>