List/Library Control - Hide Master Checkbox selector

Hello!

How do I hide the master checkbox selector in list library control? (see image below)

Our form will be managed by many different HR BPs and we have a fear that someone will accidently select everything delete all the content in the SharePoint List.

image

Thank you!

Dear @DryChips,
Try using the following CSS:

.k-grid-header th input.k-checkbox{
  display: none;
}
1 Like