Reply Reply All position in Activity Formatter

Simanta27
Tera Contributor

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.

Simanta27_0-1726473230359.png

 

 

1 REPLY 1

Paul Curwen
Giga Sage

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.

 

 

***If Correct/Helpful please take time mark as Correct/Helpful. It is much appreciated.***

Regards

Paul