OAProfessor

Deep OA Product Insight

User Tools

Site Tools


uxclientinbrowser

Running WinCC OA UX Client can sometimes not work as expected. For example, just sending a project to UX client shows it as an odd window inside the browser frame. This window now has scroll bars and it is rarely not what you want.

Here are some solutions: If you want to keep the OA title bar inside the browser, put this code on the init of your first panel:

if(isUltralight()) 
  moduleMaximize(myModuleName());

if you do NOT want a window title bar in the browser frame, put this code on the init of the topology template base panel (not on any object, just on the init of the base panel such as the responsive designs):

if(isUltralight()) 
  this.windowState = "WindowFullScreen";

With either of these solutions, your OA panels will size automatically with the size of your browser window.

For those who want to run all of their UI types full screen, put this code on the init of the base panel:

main() 
{ 
  moduleShowFullScreen(myModuleName()); 
}
uxclientinbrowser.txt · Last modified: 2021/10/26 18:30 by toddmalone

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki