I want to hide the actions button since I am using QRCode to update the workflow state. Thanks
apply the client script and add the line:
$('.actions-btn-group').hide();
can use following to bring it back.
$('.actions-btn-group').show();
2 Likes