I have a textfieldrow with a value calculated a set by a jquery function.
To set the value i used $(’#textfieldrow_id’).val(calculated_value) and i try also with $(’#textfieldrow_id’).attr(‘value’, calculated_value). With both the calculated_value appears correctly in the textfieldrow.
The problem is when i try to submit the form.
This textfieldrow is a required field, and when i submit the form the validation returns always that the field needs to be set, so he doesn’t recognize the value set by the jquery function.
I checked the generated html and the input value is set.