I have read the posts from the community on using Read-Only fields populated with Javascript. From what I understand the only requirement is to remove read only before populating. However in Forms 10 the following code does not work. The field is populated for the user, but not showing with any value once saved to the repository.
$('.total input').attr('readonly', 'False'); $('.total input').val(hh + mm); $('.total input').attr('readonly', 'True');
We just don't want the users to be able to manually alter the total fields.