This is my sample code :

add(new TextField<>("grossWeightInKg", new IModel<String>() {

    @Override
    public String getObject() {
        return flightConsignment.getGrossWeightInKg() == null ? "" :
flightConsignment.getGrossWeightInKg().toString();
    }
...
}

weightInKg is Double(not double).


On Tue, Jan 11, 2022 at 12:03 PM Martin Terra <
martin.te...@koodaripalvelut.com> wrote:

> Also, are you using a BigDecimal or arbitrary floating point numbers
> <https://docs.oracle.com/cd/E19957-01/806-3568/ncg_goldberg.html>? Big
> decimals should have a built in converter.
>
> **
> Martin
>
> ti 11. tammik. 2022 klo 10.26 Martin Grigorov (mgrigo...@apache.org)
> kirjoitti:
>
> > Please give more details
> >
> > On Tue, Jan 11, 2022 at 9:10 AM vahid ghasemi <vahidghasemi...@gmail.com
> >
> > wrote:
> >
> > > Hello,
> > > In wicket, the number above from 10E7 will convert to science number in
> > > input.
> > > How can I prevent that?
> > >
> >
>

Reply via email to