How to hide a field in AEM6 adaptive form based on logged in user | Adobe Higher Education
Skip to main content
Level 2
October 16, 2015
해결됨

How to hide a field in AEM6 adaptive form based on logged in user

  • October 16, 2015
  • 1 답변
  • 1269 조회

I'm trying to find a way to hide a particular form field in the Adaptive AEM6 form based on the user that is signed in. I looked a the source code and it seems that the form fields are in .contenxt.xml file. I'm not sure how I can manipulate this to meet the above requirement. 

이 주제는 답변이 닫혔습니다.
최고의 답변: ifconfig
Session userSession = slingRequest.getResourceResolver().adaptTo(Session.class);

String userId =  userSession.getUserID();

You can do many othre things  like getting userManager , authorizable etc once you have the session.

You can set a flag in JS and based on that flag write visibility expression on that field 

1 답변

ifconfigAdobe Employee답변
Adobe Employee
October 16, 2015
Session userSession = slingRequest.getResourceResolver().adaptTo(Session.class);

String userId =  userSession.getUserID();

You can do many othre things  like getting userManager , authorizable etc once you have the session.

You can set a flag in JS and based on that flag write visibility expression on that field