Remove/hide trash can on DataTables

Hello,
Is it possible to remove or hide the trash can on DataTables? Thanks!

Hello @ParAvion,

You can hide the column with the trash can icon using the below CSS.

.fd-datatable table tr th:last-child,
.fd-datatable table tr td:last-child
{ display: none; }
1 Like