Important Update: Some Community URL Redirects are Under Maintenance. Learn More. .

cancel
Showing results for 
Search instead for 
Did you mean: 

Custom Object - Hide Create New Comment Option

ThomasBrown1
Promoter

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?  

 

pastedImage_1.png

 

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

4 REPLIES 4

DavidPetty
Archer Employee
Archer Employee

Thomas, give this a shot.

<script type="text/javascript">
Sys.Application.add_load(function() {
//Hide Comment Notes
$("img[alt*='comment']").hide();
});
</script>

 Advisory Consultant

That worked.

 

Thanks!!

Thomas

PreethiJoshi
Contributor II

Hi, i want to hide comments icon for certain Questions and require it for others. Is it possible via custom object?

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