How to mention users @mentions in the backend of incident additional comments and worknotes ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2024 10:53 AM
Hi,
We have a custom widget 'Incident Standard Ticket Actions'. When the incident is escalated from end user, it will be assign to the new Assignment group ''ABCD", additional comments and work notes are updated in Backend.
In the work notes, we are mentioning the Previous Assigned to person and Previous Assignment group manager, so that they can be notified through email.
But we are able to just mention their name but not as @mention (@thej). So the notification is sent.
Please help me to achieve this.
Here are the html code and server side script
HTML Code:
<div>
<div class="dropdown" id="child-case-tabs" ng-if="data.showActions">
<button type="button" id="actions-button" class="btn btn-primary dropdown-toggle action-btn" data-toggle="dropdown" style="width : 100%" aria-haspopup="true" ng-init="setFocusOnActionButtons()">
${Actions}
<span class="fa fa-caret-down"></span>
</button>
<ul class="dropdown-menu pull-right" id="actionList">
<!-- <li ng-if="data.canResolve">
<a href="javascript:void(0)" ng-click="$event.stopPropagation();resolveIncident()">${Resolve}</a>
</li>-->
<li ng-if="data.canReopen">
<a href="javascript:void(0)" ng-click="$event.stopPropagation();reopenIncident()">${Reopen}</a>
</li>
<li ng-if="data.canClose">
<a href="javascript:void(0)" ng-click="$event.stopPropagation();closeIncident()">${Close}</a>
</li>
<li ng-if="data.canEscalate">
<a href="javascript:void(0)" ng-click="$event.stopPropagation();escalateIncident()">${Escalate}</a>
</li>
</ul>
</div>
</div>
Server Side:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2024 11:07 AM