g_form.setValue and g_form.clearValue is not working in Tokyo on workspace for custom fieldsDescriptiong_form.setValue and g_form.clearValue is not working in Tokyo on workspace for custom fieldsSteps to Reproduce 1. Create new string field on incident table called 'test'2. add field to SOW workspace incident form view3. create onChange client script on the new 'test' fielda. UI Type: ALLb. add this to the Script bellow the comment:if (newValue != 'TEST'){g_form.clearValue('test');}4. Go to the incident form with SOW view in UI165. type any value that is NOT 'TEST' in the fieldActual/Expected: Value is cleared as expectedDo the same in SOW workspace and the value will not be cleared.WorkaroundAdd setTimeout function before the api as mentioned belowsetTimeout(function () { g_form.clearValue('fieldname'); }, 100);Related Problem: PRB1632777