Reply Reply All position in Activity Formatter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-16-2024 12:52 AM - edited ‎09-16-2024 12:53 AM
Hi Everyone,
I have a requirement to display the Reply, Reply All buttons that appear in the activity stream above the email message to prevent the user to scroll a longer email for these buttons, Can anyone suggest how can I make this change?
Thanks in advance. Attaching screenshot for reference.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-16-2024 01:26 AM - edited ‎09-16-2024 01:43 AM
The glide.ui16.emailStreamResponseActions System Property determines whether a user can reply, reply all and forward to email using the email reply button in the activity stream in Core UI.
To enable set it to true
If the System Property does not exist in your instance just create it.
If you only want to enable this for a certain Table, or don't want any of the individual options, create an onLoad Client Script and use/adapt the following:
function onLoad() {
$j('button[reply-type="replyAll"]').toggle();
$j('button[reply-type="reply"]').toggle();
$j('button[reply-type="forward"]').toggle();
}
Beyond that repositioning them really isn't an option.
Regards
Paul