Setting up LobbyView

To start displaying LobbyView widgets, you will need to create an Access key.

Creating an Access Key

  1. Log into LobbyCentral with an administrator account.
  2. In the menu, select Tools, Administration.
  3. In the administration menu, click Manage Widgets under LobbyView.
  4. Next to Access Key, click the Generate button.

After an Access Key is created, you can create widgets for use on your web site.

If you need to generate a new Access Key, click the Generate button.   You can only have one active Access Key.   

IMPORTANT!  If you generate a new key, you must update your existing web pages.   Only the LobbyView Script Reference uses the key and needs to be updated.  Widget code is not affected when you change the key.

Widgets

There are three components to a LobbyView widget:

  • Javascript reference, containing the Access Key
  • A div that will be replaced with the LobbyView data
  • A JQuery call that retrieves the data and displays it inside the div

Creating a widget

  1. Start by clicking the Add Widget button.
  2. Fill in the display name and select a type.
  3. You can hide the Average Wait Time and Last Check-In Time by enabling those options.

If you do not have at least three weeks of data, it is recommended that you turn off Average Wait Time.   While you can still use this feature, it may not be as accurate.

Adding a widget to a page

  1. Add a reference to jQuery 1.8 or higher.
  2. Copy the LobbyView Script Reference from the Widget Management page and add it after the jQuery reference.
  3. Create a DIV with a unique ID and insert it into the page where the LobbyView data should be displayed.
  4. Add JavaScript code to call the LobbyView method.   

LobbyView(widgetId, divId)

widgetId:   The unique ID of the widget.   This can be found on the Widget Management page.

divId:   The ID of the DIV on the web page

In this example, the Downtown Campus widget has an id of 18469 and it will look for a DIV on the page with an id of 'lobbyView'.

Sample Web Page

<html>
    <head>
            <script type="text/javascript" src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
            <script type="text/javascript" src="https://code.lobbycentral.com/lobbyview.js" data-key="YOUR_ACCESS_KEY"></script>
            <script type="text/javascript">
                $(function() {
                    LobbyView('18469,'mywidget');
                });
            </script>
    </head>
            <strong>Current Wait Times</strong>
            </br>
            <div class="mywidget"></div>
    </html> 
<br>
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us