Alarm Acknowledge Table


  • Shows Station Alarms
  • Updates in Real-Time
  • Acknowledges Alarms
  • Use Default Style or Inherit Your Table Style
  • Works in Workbench and Modern Browser
Add to Cart
alarm console

Overview


The Alarm Acknowledge Table shows the current alarms in the station in a responsive table which updates in real-time. The station operator can quickly acknowledge alarms in a user-friendly interface. The widget has a number of configurable properties that can be used to modify look, feel, and functionality. Also check out the Alarm View Template.

Are you looking for a cost effective way to manage and visualize data for all your customers? Why not have a look at View Builder?

Usage


Before you start. Download the modules from our portal (see your order confirmation, which also explains licensing). Copy the modules file to your modules directory. Restart BOTH station and Workbench.

1. Copy the alarmAcknowledgeTable-ux.jar file to your modules directory.
2. Open the module from your palette file.
3. Drag and drop the widget from the palette onto your px view.

Alarm console recipient


Properties


bms totals chart properties

The widget has a few configurable properties that can be used to modify look, feel, and functionality. Change the properties as required. All you need to do is set the console recipient property.

To inherit your own style, clear the container style and table style properties. And set the highlight status property to false.

Overflow x and y: set this to visible or hidden to show/hide scrollbars.

Alarm Bql Examples:
select * from openAlarms order by timestamp desc
select * from openAlarms where alarmClass = 'defaultAlarmClass' order by timestamp asc



Using in your HTML Page


You can now use the widget in your custom html page as long as the html file is in a appropriate station directory. E.g.:
C:/../station/shared/demo1.html

1. Create an html page and place in your station files directory.
2. Create a div element and give it an id so you can inject the widget into this area. E.g.: widget1.
3. Add the following scripts before the closing head tag or the closing body tag. E.g.:

    

        <script type="text/javascript">

            var require = {
                paths: {
                    "nmodule": "/module",
                    "baja": "/module/bajaScript/rc/plugin/baja",
                    "bajaScript": "/module/bajaScript/rc",
                    "bajaux": "/module/bajaux/rc",
                    "lex": "/module/js/rc/lex/lexplugin",
                    "css": "/module/js/com/tridium/js/ext/require/css",

                    "jquery": "/module/js/rc/jquery/jquery-2.1.1",
                    "Handlebars": "/module/js/rc/handlebars/handlebars-v2.0.0", // For N4.4 or higher use /module/js/rc/jquery/jquery-3.2.0.min
                    "Promise": "/module/js/rc/bluebird/bluebird",

                    // these are runtime dependencies
                    "hbs": "/module/js/rc/require-handlebars-plugin/hbs",  // For N4.4 or higher use /module/js/rc/handlebars/handlebars.min-v4.0.6
                    "i18nprecompile": "/module/js/rc/require-handlebars-plugin/hbs/i18nprecompile",
                    "json2": "/module/js/rc/require-handlebars-plugin/hbs/json2",
                    "underscore": "/module/js/rc/underscore/underscore",
                },

                hbs: {
                    disableI18n: true
                }
            }
        </script>
        <script type="text/javascript" src="/module/js/com/tridium/js/ext/require/require.min.js"></script>
        <script>
            require(['/module/alarmAcknowledgeTable/rc/alarmAcknowledgeTableWidget.run.js'], function (app) {

                app.initialiseAlarmAcknowledgeTable({
                    ackIconColor: '#1e88e5',
                    alarmBql: '', // e.g. select * from openAlarms where alarmClass = 'defaultAlarmClass' order by timestamp asc
                    alarmClassFilter: '', // filter by alarm class
                    backgroundColor: '',
                    divId: '#widget1',
                    consoleRecipient: 'station:|slot:/Services/AlarmService/ConsoleRecipient', // set this to any console recipient within the station
                    containerStyle: 'ack-table-responsive', // set this to '' to allow the table to inherit page styling
                    overflowX: 'hidden', // set to visible or hidden show scroll bars
                    overflowY: 'hidden', // set to visible or hidden show scroll bars
                    highlightStatus: 'true', // set this to false to allow the table to inherit page styling
                    maxResults: 20,
                    tableStyle: 'ack-table', // set this to '' to allow the table to inherit page styling
                });
            });
        </script>
        </head>
        <!--html to go here-->
        <div id="widget1" style="width:300px;height:300px;"></div>
        <!--Rest of your html below...-->
                                    

You May Also Like





Advanced Alarm Table

N4 View Builder™©

tridium bms system

Niagara Alarm View Template


back to more widgets...