Implemented a new jcr:namespace ("xyz") and based on that created a custom privilege ("xyz:superUser").
Now im assigning this privilege to a testUser on a given dam path (e.g. /content/dam/we-retail/activites/biking). User also has jcr:read permission on /content
My requirement is to hide/unhide a custom option(e.g. "Confirm Data") in top rail selection action bar on the asset Touch UI based on the user having the custom privilege("xyz:superUser") or not on that path.
Overlayed the /libs/dam/gui/content/assets/jcr:content/actions/selection and created a custom action(e.g. "Confirm Data") .
Implemented the granite:rendercondition node under it and used the OOTB rendercondition(/libs/granite/ui/components/foundation/renderconditions/privilege).
Properties added to it
path String ${requestPathInfo.suffix} --------> to get the path
privileges String[] xyz:superUser ---------> to check the privilege required
Now when i log in as testUser, on selecting the biking folder, the top rail selection action bar should show the "Confirm Data" option based on the privilege given to the user.
But it is not working.
Can this be achieved by simply using the OOTB privilege render condition?
Can somebody guide me how it can be achieved.
Solved! Go to Solution.
Views
Replies
Total Likes
Try with granite/ui/components/coral/foundation/renderconditions/privilege
One more point , Rendererconditions only works on page load(backend rendering) not on selecting folder and navigating in dam folder structure, to achieve hide of custom button, you can simply deny access to /apps/dam/gui/content/assets/jcr:content/actions/selection/custom
Try with granite/ui/components/coral/foundation/renderconditions/privilege
One more point , Rendererconditions only works on page load(backend rendering) not on selecting folder and navigating in dam folder structure, to achieve hide of custom button, you can simply deny access to /apps/dam/gui/content/assets/jcr:content/actions/selection/custom
Hi Arun,
Thanks for the update
So if i want to show/hide an option based on rendercondition, that will not work on selecting an asset or folder?
Also how do i deny access to /apps/dam/gui/content/assets/jcr:content/actions/selection/custom
Hello Arun
So privilege rendercondition works fine on first load on particular path but does not work when user navigates in assets. That seems to be major drawback to the rendercondition feature. Do we have any workaround for this through any customization? Did not quite get your second part about denying access to /apps/dam/gui/content/assets/jcr:content/actions/selection/custom. Can you please elaborate?
Thanks
I'm facing the same issue, I added an anchor button to the assets selection action toolbar. Now I have a render condition which allows this button to be visible in a specific folder say: startsWith (/content/dam/a/path)
It works when we open any folder in /content/dam/a/path directly. Then, after you navigate out of the folder, the toolbar/action bar doesn't get refreshed, which keeps this button visible in other hierarchies as well.
Views
Likes
Replies