I have a Kinetic application studio Ice.UIDbd and need to set the application to open up maximized or change the width to be wider. Some of the fields in a grid are getting cut off because the application size isn’t large enough. I have tried all the options under the “Layout” of the app and nothing adjusts it. Do you know how to change this? Thanks.
In application studio, in application map, click on the root page (don’t hit the edit pencil, just get the properties to show on the right)
Navigate down the list and find “Use Full Width”
This won’t cause the window to open up full screen/maximized, but will let it scale to fill the space available when the user does so.
If you want it to open full screen/maximized, you’ll probably need to do some creative and unrecommended use of windows objects to manipulate the window position/size on classic side, and some creative and unrecommended use of javascript on the browser side.
Thanks for your reply. We need the window to open full screen/maximized. It’s used on our shop floor and our users won’t want to scale it each time. I’ll keep looking into this. Appreciate your help.
If you maximize the browser, then close it, it should remember that state and open maximized each time. If your users are resizing the window after the fact, then closing the browser, that will reset the default window size.
You can also right click the browser icon, and change the properties to run as maximized.
EDIT: Although this has worked for me in the past, it is not working with my Edge browser icon. ![]()
Edit Edit: If you open the Edge Browser from a shortcut link, this approach my not work. However, when I set Edge as my default browser, and then put a shortcut (to Kinetic, for example), then when I open and maximize, it does remember the state after being closed. ![]()
The client browser and the real browser are not going to let you control the window size or minimize and maximize.
Train your users to maximize.
Change the URL in this to your desired URL, set it as a bookmark in your browser.
javascript:(function(){window.open('https://yoururl/page','_blank','popup=yes,width='+screen.width+',height='+screen.height+',left=0,top=0');})();
Get creative and make a shortcut to load that bookmark.

