Hide checkboxes in alarm status table

I made a separate "acknowledge all" button for alarms since the check boxes were too small for the screen resolution. So now they aren't needed (since operators won't care to acknowledge a single alarm). Is there any way to hide the check box column on the table?

This appears to do the trick (add to your adv. stylesheet, preferably include a p.style in it so you can apply it only when you need it):

.tc.ia_table__cell[data-column-id="select"] {
    display: none;
}

..adding the p.style requirement:

.psc-Components\/AST\/HideSelectColumn .tc.ia_table__cell[data-column-id="select"] {
    display: none;
}
2 Likes