Hello!
I am currently struggling to find a way when using the JavaScript OnLoad Event function to make all the figures round to a second decimal place.
I want to make an invoice template that can be filled in and it works out tax and totals.
All is working very well indeed but the recurring figures looks untidy.
Once the record is saved it all looks great but it is just on the initial entry that it looks untidy.
So far I have tried:
parseFloat(ctrlTotal1.setValue(Number(ctrlPrice1.getValue()) * Number(ctrlQuantity1.getValue()))).toFixed(2);
Please help!
Thanks
Ben