cancel
Showing results for 
Search instead for 
Did you mean: 

ME POD Configuration -- open Popup in fullscreen

Former Member
0 Kudos

Dear Experts,

I want to display some Informations about the SFC with the Device History Report in a popup in my custom POD. The report is triggered by an Button in the custom POD. And it works normally, but the Popup isnt fullscreen and therefore i have to scroll to see all the Informations. To improve the usability i want to open the popup automatically in fullcreen. Are there any options to do that?

Thanks a lot in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member185234
Active Participant
0 Kudos

Hi Benedikt ,


Did you try to override core values , by default it is 38X25 ? You can add methods below to managed-bean class for popup window :

public  int getPopupWidth() {

return 40;

}


public int getPopupHeight() {

return 35;
}

Thanks,

Oksana