I have a scenario where two TVs are used vertically to display a list of requests. I'm trying to open a popup that takes the full screen size of the two TVs, but even putting the height as 3840px the popup only opens by filling the first screen. Any suggestions?
function popitup(a) {
window.open(a,'open_window','height=3840, left=1, location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, titlebar=no, toolbar=no, top=1, width=1080,fullscreen=yes');}
The application itself uses java with spring mvc and thymeleaf in the front end. The above snippet is javascript to open the popup.