- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 02:11 AM
Hi, I need help with restricting the Variable formatter for certain group for one of the Catalog Item. My requirement is to make the Variable Formatter to be editable only for certain members of the group for rest all others it shouldn't be editable. I need to achieve this via Catalog Client Script. After submitting the request, in the backend Variables should be only editable for certain group and others shouldn't be able to edit.
Any inputs here?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 03:18 AM
Follow the below steps.
1. Write display BR on req item table
Condition : item is "select catalog name"
Script:
Result:
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 03:18 AM
Follow the below steps.
1. Write display BR on req item table
Condition : item is "select catalog name"
Script:
Result:
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 03:39 AM
thank you so much this solution worked for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 03:04 AM
Also it's not restricting for anyone if I replace gs with g_form. So this seems not working

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 03:20 AM
even if you use g_user.getUserID to get user ID. The isMemberOf method is a server side method cannot use in client script
Harish