Article Number
000032225
Applies To
Product(s): ArcherVersion(s): 6.x, 2024.03Primary Deployment: On Premises/AWS Hosted/AWS SaaS
Description
This article provides information on how to remove question completion count within the questionnaire status.
Resolution
Create a Custom Object:
- From the Layout tab, drag a New Layout Object called Custom Object to the Layout.
- In the Custom Object window, give it a name such as Hide CompletedDiv.
- For the Code value, enter the custom javascript below.
<script type="text/javascript">
Sys.Application.add_load(function() { $('.CompletedDiv').hide(); });
</script>
- For Display, select the Both option.
- Click OK.