Hide the catalog items fields from enduser
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2023 12:14 AM
I want to hide catalog items fields from enduser can give me the code for this
13 REPLIES 13
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2023 03:04 AM
Hi,
can u tell me this solution
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2023 03:07 AM
Hi @harsha vv
function onLoad() {
//Type appropriate comment here, and begin script below
var rr=g_user.getRoles()
alert(rr)
if(rr.length==0)
{
g_form.removeOption("subcategory",'option1');
g_form.removeOption("subcategory",'option2');
}
}
Can you change your script as above and let me know value in alert.
Thanks and Regards,
Saurabh Gupta
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2023 03:24 AM
I have tried but it is not working
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2023 04:08 AM
hi,
any update on this