Skip to main content
Nintex Community Menu Bar

Clear/Update a Calculated Field using JavaScript

  • August 29, 2018
  • 2 replies
  • 250 views

Forum|alt.badge.img+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

Forum|alt.badge.img+5
  • October 12, 2018

Hi Furst .

You should reset the variable in the calculated value.

Regards,

Reva Eka Patria


Forum|alt.badge.img+2
  • May 27, 2021
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.