Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2024 11:16 PM
Hi @Kaustubh k
Create a new function in the ClientUtils() script include and pass the action parameter to the manageGroup function.
Example script
manageGroup: function(action)
{
if (action === 'Add Members')
{
return this.addMembers();
} else if (action === 'Remove Members')
{
return this.removeMembers();
}
},
Please mark this response as Correct and Helpful if it helps you can mark more that one reply as accepted solution
Thanks
Eshwar