- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2023 12:53 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2023 01:00 AM
Hi @Mehar Naaz1 ,
You can uncheck the Global checkbox on UI Policy , then View field is visible there you can specify the view where you want to hide this specific field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2023 01:02 AM
Hi @Mehar Naaz1
You can create an onLoad client script and Uncheck the Global check box and set the view name in the View field. and use the script to hide the field.
function onLoad() {
g_form.setVisible('YOUR_FIELD_NAME', false);
}
Please mark my answer helpful and accept as solution if it helped 👍✔️
Anvesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2023 12:59 AM - edited 10-05-2023 01:00 AM
Hi @Mehar Naaz1 ,
When creating UI Policy, in When to Apply - > uncheck the global & add view on which view you need the UI policy should work (meaning in which view you wanted to hide).
The same functionality is available in Client Scripts as well 🙂
Please mark my answer as Accepted Solution if it suffice the requirement & please hit helpful button
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2023 01:00 AM
Hi @Mehar Naaz1 ,
You can uncheck the Global checkbox on UI Policy , then View field is visible there you can specify the view where you want to hide this specific field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2023 01:02 AM
Hi @Mehar Naaz1
You can create an onLoad client script and Uncheck the Global check box and set the view name in the View field. and use the script to hide the field.
function onLoad() {
g_form.setVisible('YOUR_FIELD_NAME', false);
}
Please mark my answer helpful and accept as solution if it helped 👍✔️
Anvesh