State Field temporarily shows state integer instead of state label.Issue Underlying state value is seen on form instead of corresponding label.ReleaseAnyCauseThe script that sets the state value has the state value in quotes e.g. g_form.setValue('state', '27');ResolutionRemove the quotes so as to set the underlying value. E.g. g_form.setValue('state', 27);