AgilePoint webpart in SharePoint - Hide Reassign and Cancel buttons in blue bar
AnsweredIn the AgilePoint webpart used in SharePoint, Is there a way to hide the Reassign, Cancel and Bulk Approval task buttons that show in the blue header bar when a task is selected (see below).
I know you can hide these on the task name menu using the Hide Context Menu Entry. Is there something like this that works for the blue bar buttons?
Another option would be to suppress that column with the boxes, so they can't select a task that way. I didn't see that as an option either.
I'm using SharePoint 2016, AgilePoint NX v7.0
Thanks!
-
Hi Gwen,
You can make use of Work Center Custom CSS (https://documentation.agilepoint.com/00/portal/cloudportalCustomCssSettings.html)Try below CSS to hide Reassign and Cancel button
.toolbar .Reassign,
.toolbar .CancelProcess {
display: none !important;
}
Note: This will hide option for every user.
also you can hide rest of tool bar menu, for which you need to inspect the CSS class and make use of it.let us know if this works.
-
Hi Gwen,
As you mentioned BulkApproval is your Menu name, your style must be like this
.toolbar .Reassign, .toolbar .CancelProcess, .toolbar .ToolbarMenu_BulkApproval { display: none !important; }
You can inspect the class name from browser and make alteration if above CSS doesn't help.
Please sign in to leave a comment.
Comments
6 comments