Action button on blsp portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2024 12:59 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2024 11:40 PM
Hi @SomashekarB ,
You have to configure the Action in the Standard Ticket Configuration.
Please follow the below steps to configure:
- Navigate to All > Standard Ticket > Standard Ticket Configuration
- Open the Ticket Configuration record available for your table.
Then , in the record, under action region, open the record .
You can clone the OOB widget and you can use the server script and html changes or just limit using the "Role"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2024 07:22 AM
This is the OOTB widget and not sure in Server-Side script where exactly the action is calling to restrict only to admins
I tried giving the roles but still action button is not showing for non admins
<li>
<a ng-if="(c.data.showCaseAction) && c.data.state == '6'" href="javascript:void(0)" ng-click="$event.stopPropagation();c.action(data.table, data.sys_id, '3','accept')">${Accept Solution}</a>
</li>
<li>
<a ng-if="(c.data.showCaseAction) && c.data.state == '6'" href="javascript:void(0)" ng-click="$event.stopPropagation();c.rejectSolution()">${Reject Solution}</a>
</li>