Hi,
There's no way to do this via props, so we'll need to create a feature request. In the meantime, you could try using the advanced stylesheet to hide the option from the menu. Something like:
.alarmTableMenuItem.ia_alarmTableComponent__modalMenuItem[data-label="Cleared, Acknowledged"] {
display: none;
}
If you want to target a specific table, just add a unique classname (style class) to the tables root style, then include that in the selector. Something like .psc-hide-clear-acked > .alarmTableMenuItem.ia_alarmTableComponent__modalMenuItem[data-label="Cleared, Acknowledged"]
. Where hide-clear-acked
is the name of your style class.
p.s. I'm closing this topic, as it's become very long. Please create a new post for any future questions or requests related to the Alarm Status Table. Thanks!