Device Management - remove action

Hello,

We have a custom application that is cloned from the Device Management app. Is there any suggested way to hide/remove the Replace and Delete action on the All Devices page?

Thanks,
Divya K

Hi Divya,

I think the easiest solution would be to apply global CSS styling to hide the action controls for the c8y-device-grid component. Something like this (didn’t test it myself):

c8y-device-grid {
  td.dk-column-actions > button {
    display: none;
  }
}

This would hide all the action controls in the device grid. Keep in mind that this affects all device grids.

Best regards



Christian Guether

1 Like