- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2022 10:30 PM
Hi All,
I need to hide the multiple choice question from the record producer. Radio is the multiple choice field but I don't want that Radio to be displayed on the form, instead I need only options to be displayed on the record producer form. How to achieve this.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2022 10:38 PM
Hi Krithika,
You have to write a onLoad client script after you create a label to hide it.
$('label_IO:7817abedad4c3100dd49a5edb9ba2a38').hide(); //Replace this with the sys_id of the label you created.
Please let me know if you need any other help
Thanks,
Valmik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2022 10:38 PM
Hi Krithika,
You have to write a onLoad client script after you create a label to hide it.
$('label_IO:7817abedad4c3100dd49a5edb9ba2a38').hide(); //Replace this with the sys_id of the label you created.
Please let me know if you need any other help
Thanks,
Valmik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-07-2022 02:25 AM
Hi
This is not working in portal view and the UI type is in All only. Can you tell how to add in portal view too please.
Regards,
krithika
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2022 10:44 PM
Hi,
You can hide the label using method-
g_form.setLabelOf('variable_name', '');
Thanks,
Sagar Pagar