Clear/Update a Calculated Field using JavaScript

  • 29 August 2018
  • 2 replies
  • 199 views

Badge +9

I have calculated field that parses the value of a list lookup dropdown.

 

I also have a JavaScript function that successfully resets the list lookup dropdown when a radio button changes, but as the reset does not clear the calculated value, I've tried to do the following to no avail. What am I missing?

 

RadioButton.click(function() {
    NWF$('#' + CalculatedValue).val('');

}


2 replies

Userlevel 1
Badge +5

Hi Furst .

You should reset the variable in the calculated value.

Regards,

Reva Eka Patria

Badge +2
Hi @reiva13
Can you please elaborate this how could we implement?
I want to clear the calculated value field on the form when checkbox is unchecked.

Reply