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
DS777DS777 

ListViews - action, edit and delete

Is there a way to suppress action,edit or delete links? Not by having reading permissions on the object.
But using javascript or Apex.
jwetzlerjwetzler
If you look at the source for that page you'll see that the column in which those links reside is a td with a class called "actionColumn".

So if you want that column to disappear you can put this on your page:
<style>
.actionColumn {
  display:none;
}
</style>

Of course, this is a style that is used by our application, and you overwrite our styles at your own risk.  It's possible for the name of that class to change, or for our css to get rearranged in such a way that this will no longer work for you.  Should not happen often but consider yourself warned :)

Jill