How to get Form Section to only show on certain services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-04-2022 12:11 PM
I am creating a new service, and I have made a new Form Section for this service. The only problem is the section is showing up on every service within the table I'm working on (HR Payroll Case), instead of just my new service. Is there a way to configure this new section to only be visible on 1 service?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-04-2022 12:37 PM
Did you check SNGuru link
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-04-2022 02:46 PM
You can use this command in a client script to show or hide a section by name:
g_form.setSectionDisplay('<section_name>', true); //to show or
g_form.setSectionDisplay('<section_name>', false); //to hide
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2022 06:15 AM