function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
PappuPappu 

How to display all actions in single line?

Hi Guys,

How to display all the action on a data table in single line.
Currently, Follow button is appearing as new line (Please refer the attached), which needs to be displayed next to delete link.
Also, please let me know how I can remove the "Follow" text present next to the chatter feed (plus) icon.
I have posted my current code below.


<apex:outputLink title="" value="/{!contact.id}/e?retURL=/apex/{!$CurrentPage.Name}">Edit</apex:outputLink>&nbsp;|&nbsp;
<apex:commandLink value="Delete" action="{!deleteProduct}" reRender="form"> 
          <apex:param value="{!contact.id}" name="IDfordeletion" assignTo="{!contactId}"/>
</apex:commandLink>&nbsp;|&nbsp; <apex:commandLink><chatter:follow entityId="{!contact.id}"></chatter:follow></apex:commandLink>
User-added image