• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

Launch app in full screen on startup

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Launch app in full screen on startup

    Is there any way to have an app open in full screen when its launched?

  • #2
    We do not have a built in setting for this but you can achieve this using "Execute Script". In Behaviors, add a new Execute Script under Startup.

    Code:
    if (typeof parent.Ext === 'object'){
      parent.Ext.ComponentQuery.query('controlbar')[0].getController().onClickFullscreen();
    }
    success();

    Comment


    • #3
      If the user only needs access to your Nitro App application, you can click the row menu of the application from within App Builder, click the "Share" menu item, and it will give you a URL that will just load this single application.

      NAB Share.png

      Comment

      Working...
      X