Perspective 8.3 Alarm Status Table text

Hi,

I have a problem with the alarms’ labels in Perspective 8.3.

The description of alarm is pretty long and I would like to fit it in an alarm table inside of a popup. Is there any way to wrap the text or to change the height of a column so the text will fit?

Thank You

Yes

Specifically, add this into your adv. stylesheet:

/* === Alarm Status Table Styles =================================================================== */

/* Allow cell text to word wrap */
.alarmStatusTable .ia_table__cell .content div {
	white-space: pre-wrap;
}
1 Like

Thank You!

1 Like

Is there any way to implement it but not for every Alarm table? I would like to disable it in a one certain table.

/* === Alarm Status Table Styles =================================================================== */

/* Allow cell text to word wrap */
.psc-Components\/AST\/WrapCellText .alarmStatusTable .ia_table__cell .content div {
	white-space: pre-wrap;
}

Then add the style class Components/AST/WrapCellText to your AST style.classes prop.

In this case, I would suggest adding a blank style class into the Perspective Styles so that it is selectable within the classes dropdown. you don’t need this however for it to work, just to provide visibility

3 Likes