I've got an alarm status table, and I want to sort the alarms by state. I'd like to sort by 1) active/unacked, 2) active/acked, 3) cleared/unacked, 4) cleared/acked. But the default order is a/a, a/u, c/a, c/u.
The only option I can see to change the order of things within a column is ascending/descending, but I want to change what "ascending" means. Is there any way to do this?
Also, I would assume a cleared/acknowledged alarm would be removed from the summary table, but they seem to linger.
I guess I can just include the isAcked and isActive columns in the activeSortOrder, even if I don't have them visible in the table
Seems like I had to enable the columns in the table to make the sort actually work, but I set the width to 0 to hide them.
Confirming that this solution works.
My workflow was: enable the isAcked and isActive columns, set their width to zero, and set the sort order of isAcked to ascending. Then set the activeSortOrder to 0:isActive, 1:isAcked, … etc. example 2: priority, 3: activeTime and so on.