Customizing other aspects of off-page connectors

Customizing off-page connector names

Off-page connector names are graphically represented like in the other predefined business objects. For a list of properties that apply to the off-page connector name representation, refer to Customizing the label of a business object.

Customizing off-page connector states and alarms

The graphical representation of off-page connectors does not take into account the states set in the business objects. It is only affected by the object type and the alarms, if any (but alarm counts and alarm balloons are not represented).
The properties listed in the following table allow you to customize the graphic representation of alarms in off-page connectors.
CSS properties for off-page connector alarm representation
Property Name
Type
Default
Description
primaryAlarmState
IltAlarmStateEnum
IltAlarmStateEnum.Raw
Determines whether the raw alarms or the impact alarms are displayed as the primary alarm state. Possible values are: ltAlarmStateEnum.Raw or ltAlarmStateEnum.Impact
alarmBorderColor
Color
null (transparent)
Defines the color used to represent the alarm border around the base. Setting the value to null resets the alarm border color to its default value
alarmBorderWidth
int
2 pixels
Defines the width of the alarm border.
alarmBorderVisible
boolean
true
Indicates whether the alarm border is visible or not around the object base.
alarmColorVisible
boolean
true
Determines whether the alarm color is visible or not in the object value.

How to customize the alarm representation in off-page connectors

The following CSS extract shows how you can customize the graphic representation of off-page connectors so that they do not display alarm information.
object."ilog.tgo.model.IltOffPageConnector" {
  alarmColorVisible: false;
  alarmBorderVisible: false;
}