18.12.2020, 09:59
Hey,
A customer wants restricted Access to schedulers from the Visu Dashboard.
I tried a code snippet from 2017 that i found in the forum, but it doesnt work.
A customer wants restricted Access to schedulers from the Visu Dashboard.
I tried a code snippet from 2017 that i found in the forum, but it doesnt work.
Code:
/***********/
/*** Link PIN Protection ***/
$(function(){
$('.mylink').off('vclick').on('vclick', function(e) {
showPincode('1234', {
callback: function() {
window.location = '/scada-vis/schedulers';
}
});
return $.stopEvent(e);
});
});