SA Project- Alarm Page Column Fields

Hi,

How can we customize the Active Alarm Page in SA project? 

Would like to show other Columns and pre-set the width as it is always appearing to to small and fixed when opening the alarm page. 

As an example I would like to show the ITEM column  (used in the Historical events ) on the Active Alarm page, and increase the default width of columns TAG and NAME.

Thanks,

Regards

Rune

Parents
  • i think i may have found the answer to this. in the page DefaultAlarm_HD1080 the page entry event uses the function
    AlarmPage_Init(....) . apparently it can take 4 arguments. one of them is format.
    which means you can specify a format. so in Parameters activity, create a new format under section name "Format"
    i did a trial with this example format {PriorityAndState,24}{OnDate,90}{OnTime,90}{Type,90}{Name,220}{Desc,300}{Area,10}
    you can tailor the format as long as the format is recognised. (see Alarm_Display_Fields.html)
    then in the pageentry of the DefaultAlarm_HD1080 specify the name of the format in the 4th argument.
    eg. AlarmPage_Init(AlarmPage_GetDefaultParameters("HD1080"), "HD1080",0,"ActiveAlarms")
    where ActiveAlarms is the name of the new format. save, compile and run
    hopefully that helps
Reply
  • i think i may have found the answer to this. in the page DefaultAlarm_HD1080 the page entry event uses the function
    AlarmPage_Init(....) . apparently it can take 4 arguments. one of them is format.
    which means you can specify a format. so in Parameters activity, create a new format under section name "Format"
    i did a trial with this example format {PriorityAndState,24}{OnDate,90}{OnTime,90}{Type,90}{Name,220}{Desc,300}{Area,10}
    you can tailor the format as long as the format is recognised. (see Alarm_Display_Fields.html)
    then in the pageentry of the DefaultAlarm_HD1080 specify the name of the format in the 4th argument.
    eg. AlarmPage_Init(AlarmPage_GetDefaultParameters("HD1080"), "HD1080",0,"ActiveAlarms")
    where ActiveAlarms is the name of the new format. save, compile and run
    hopefully that helps
Children
No Data