Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
239 views
in Q2A Core by
<li data-menu-collapse data-ng-disabled="checkPermission('ViewAlertSection') || checkPermission('ViewSignalSection') || checkPermission('ViewSubscriptionSection')">
                <a href="#"><i class="icomoon-feed"></i> <span class="menu-item-parent">SENSORS</span></a>
                <ul>
                    <li data-ui-sref-active="active" data-ng-disabled="checkPermission('ViewAlertSection')">
                        <a data-ui-sref="app.sensors.alerts">Alerts</a>
                    </li>
                    <li data-ui-sref-active="active" data-ng-disabled="checkPermission('ViewSignalSection')">
                        <a data-ui-sref="app.sensors.signals">Signals</a>
                    </li>                 
                    <li data-ui-sref-active="active" data-ng-disabled="checkPermission('ViewSubscriptionSection')">
                        <a data-ui-sref="app.sensors.subscriptions">Subscriptions</a>
                    </li>
                </ul>
            </li>

I want to perform some test on this platform, like copy/paste of code

Please log in or register to answer this question.

...