Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2020-10-12 09:22 AM
Hello -
I am in the process of building out a new questionnaire template that will require a simple interface without the need for additional comments or review. Is there a way to hide the 'comment option' that appears when you add a new question field to layout?
I'm not finding an option to limit this within the built-in configuration and my attempt at creating a new custom object to hide this option is also not working.
Thanks!
Thomas
2020-10-12 09:38 AM
Thomas, give this a shot.
<script type="text/javascript">
Sys.Application.add_load(function() {
//Hide Comment Notes
$("img[alt*='comment']").hide();
});
</script>
Advisory Consultant
2020-10-12 09:41 AM
That worked.
Thanks!!
Thomas
2021-02-03 07:21 AM
Hi, i want to hide comments icon for certain Questions and require it for others. Is it possible via custom object?
2021-02-05 11:44 AM
Preethi, it is possible somewhat possible via custom object. You'd have it iterate through the questions and hide the comments icon for the ones to don't want it displayed for.
Requiring a user to fill out a comment is extremely difficult being you have to parse through the comments field to see if there isn't a comment for a specific question.
Advisory Consultant