Hi all,
I am trying to define a custom command with Hyperlinks.xml, that only gets displayed in the shortcut of the Alarm Console when the Parameter of the Alarm row contains a specific string, in my case, "Severity (Channel Events Overview)".
I am trying to get the job done with the attribute "filterElement", like below.
filterElement="AlarmEventMessage.ParameterName == Severity (Channel Events Overview)"
However, I am not succeeding. Any ideas?
In cases where the alarm is generated on a cell in a table, the ParameterName property will contain the row index as well. (e.g: Severity (Channel Events Overview) Channel B).
As a result there will never be an exact match as defined in the filter. For those scenarios you can use a contains instead.
filterElement="AlarmEventMessage.ParameterName contains Severity (Channel Events Overview)"