14.07.2022, 08:41
In JS you can make all element read only and hide all inline elements like this. This will work only in gui
Code:
$(function() {
if (window.Globals && Globals.user == 'admin') {
$('.item-control').addClass('item-read-only');
$('.item-control-single').addClass('hide');
}
});
------------------------------
Ctrl+F5
Ctrl+F5