Skip to main content

when I create a custom screen by default I can enter only 2 digits after the decimal point how I can modify this parameter so that we have 3 digits after the decimal point

What does the DAC field definition look like?


DAC field definition


I think you can do this:

[PXDBDecimal(4)]

And then you might need to remove the field control and re-add it to the form.


Yes,  I concur with ddunn.

If you wanted to display 3 decimals, you need to decorate your DAC attribute with PXDBDecimal(3)]

 

PXDBDecimal(Precision) → Since this is your custom screen and custom field, also make sure that you need provide precision value for the database field as well.


Reply