Stop Auto Calculation when other fields change
Hi there,
I am facing a problem regarding a percentage calculation in my form.
As of now my code to receive a proper display of the correct percentage decimal I am using this code:
if(event.target.name=="Tax")
{
event.value=event.value/100;
}
This works fine so far. However, when I change any other value of other fields this specific field starts to calculate again the value by 100.
Example:
Tax: 5%
-> Changing field of unit price
Tax: 0.05% (it calculates the value again by 100).
Anybody an idea how to solve this problem?
Thank you in advance!
Ketch
