Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
How can I disable (greyed out) the download icon for an asset as it is an OOTB functionality.Do I need to overlay any particular node for the same?
@Theo_Pendle @arunpatidar @Vijayalakshmi_S @BrianKasingli
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
If you want to disable it for all the users then you can simply write CSS.
button._coral-ActionButton._coral-ActionButton--quiet._coral-QuickActions-item[title="Download"] { display: none; }
View solution in original post
Hi @Sudeshna1992,
Adding to @arunpatidar's solution, if you are to disable based on user permissions, then we need to overlay and then write render conditions. (OOB Privilege type can be used)
Sample implementation for reference:
/libs/cq/gui/components/renderconditions/canreadworkflowmodels/canreadworkflowmodels.jsp
Views
Likes
Replies