Citect Scada SA Project- Extend SOE Total Field View in Workspace

Hi,

Can we extend the width of the SOE field view to cover the rest of workspace (right-hand side), is there a parameter we can use to set total/maximum width within the workspace? 

The Cause and Response is not needed in SOE list (only used in Active Alarm list), hence the free space could be used for additional SOE fields, and as we have free space the h-scroll bar could be avoided. 

Appreciate any inputs,

Thanks,

Rune

Parents
  • Hi Rune,

    This is set in the On Page Entry event for the DefaultSOE_HD1080.

    AlarmPage_Init(AlarmPage_GetDefaultParameters("HD1080"), "HD1080", 15) , the AlarmPage_GetDefaultParameters has the line where the width is set :

    IF (sResolution = "HD1080") THEN
    MapValueSet(sMap, g_sAlarmPageParamMainAlarmListWidth, 1098);

    If you change 1098 to 1498 you will achieve what you are after.

    It might be best to create a copy of the DefaultSOE_HD1080 page and change the on page entry to call your own function (instead of modifying the exisisting calls).
Reply
  • Hi Rune,

    This is set in the On Page Entry event for the DefaultSOE_HD1080.

    AlarmPage_Init(AlarmPage_GetDefaultParameters("HD1080"), "HD1080", 15) , the AlarmPage_GetDefaultParameters has the line where the width is set :

    IF (sResolution = "HD1080") THEN
    MapValueSet(sMap, g_sAlarmPageParamMainAlarmListWidth, 1098);

    If you change 1098 to 1498 you will achieve what you are after.

    It might be best to create a copy of the DefaultSOE_HD1080 page and change the on page entry to call your own function (instead of modifying the exisisting calls).
Children
No Data