Hi Isomorphic
I have a SQL datasource with the below field :
I am entering values in listgrid as follows:
I have tried removing the "format" property from field but it's not working. Looks like this is how float datatype works but I cant find anything in the documentation.
Kindly suggest.
I have a SQL datasource with the below field :
Code:
<field name="price" type="float" precision="12" decimalPrecision="2" format="0.0#'%'" javaClass="BigDecimal"/>
- 21 : it works fine
- 21.10 : it works fine
- 21% : When in enter % value then the data is automatically converted in 0.21% on entering. I don't have any cell formatter on this field.
I have tried removing the "format" property from field but it's not working. Looks like this is how float datatype works but I cant find anything in the documentation.
Kindly suggest.
Comment